swc/bundler/tests/.cache/deno/73ce26cbde0e838c96d42691a66e965e13cf8d0c.ts
강동윤 fec189f2f3
fix(bundler): Fix stack overflow on Windows (#1464)
bundler:
 - Prevent stack overflow. (denoland/deno#9752)

testing:
 - Bump version
 - Fix handling of paths on windows.

testing_macros:
 - Bump version
 - Correctly ignore files.
2021-03-22 19:42:42 +09:00

20 lines
546 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.18.0/command/types/boolean.ts
import { boolean } from "../../flags/types/boolean.ts";
import type { ITypeInfo } from "../types.ts";
import { Type } from "../type.ts";
/** Boolean type with auto completion. Allows `true`, `false`, `0` and `1`. */
export class BooleanType extends Type<boolean> {
/** Parse boolean type. */
public parse(type: ITypeInfo): boolean {
return boolean(type);
}
/** Complete boolean type. */
public complete(): string[] {
return ["true", "false"];
}
}