swc/bundler/tests/.cache/deno/5d9b824044a1eab0c1867699a060028799c1c96d.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

39 lines
1.5 KiB
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.18.0/command/completions/complete.ts
import { Command } from "../command.ts";
import { UnknownCompletionCommand } from "../_errors.ts";
import type { ICompletion } from "../types.ts";
/** Execute auto completion method of command and action. */
export class CompleteCommand
extends Command<void, [action: string, commandNames?: Array<string>]> {
public constructor(cmd?: Command) {
super();
this.description("Get completions for given action from given command.")
.arguments("<action:string> [command...:string]")
.action(async (_, action: string, commandNames?: Array<string>) => {
let parent: Command | undefined;
const completeCommand: Command = commandNames
?.reduce((cmd: Command, name: string): Command => {
parent = cmd;
const childCmd: Command | undefined = cmd.getCommand(name, false);
if (!childCmd) {
throw new UnknownCompletionCommand(name, cmd.getCommands());
}
return childCmd;
}, cmd || this.getMainCommand()) ?? (cmd || this.getMainCommand());
const completion: ICompletion | undefined = completeCommand
.getCompletion(action);
const result: Array<string> =
await completion?.complete(completeCommand, parent) ?? [];
if (result?.length) {
Deno.stdout.writeSync(new TextEncoder().encode(result.join("\n")));
}
})
.reset();
}
}