swc/bundler/tests/.cache/deno/681bf9ebab10fb951ce34c6d0feb7967853090f9.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

21 lines
545 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.18.0/command/types/action_list.ts
import type { Command } from "../command.ts";
import { StringType } from "./string.ts";
/** Completion list type. */
export class ActionListType extends StringType {
constructor(protected cmd: Command) {
super();
}
/** Complete action names. */
public complete(): string[] {
return this.cmd.getCompletions()
.map((type) => type.name)
// filter unique values
.filter((value, index, self) => self.indexOf(value) === index);
}
}