swc/bundler/tests/.cache/deno/13243b0f0284feaf671c22221599e019e19aa9db.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

183 lines
5.1 KiB
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.18.0/command/_errors.ts
import { ValidationError } from "../flags/_errors.ts";
import { didYouMeanCommand } from "./_utils.ts";
import type { Command } from "./command.ts";
export class CommandError extends Error {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, CommandError.prototype);
}
}
export class MissingCommandName extends CommandError {
constructor() {
super("Missing command name.");
Object.setPrototypeOf(this, MissingCommandName.prototype);
}
}
export class DuplicateCommandName extends CommandError {
constructor(name: string) {
super(`Duplicate command name "${name}".`);
Object.setPrototypeOf(this, DuplicateCommandName.prototype);
}
}
export class DuplicateCommandAlias extends CommandError {
constructor(alias: string) {
super(`Duplicate command alias "${alias}".`);
Object.setPrototypeOf(this, DuplicateCommandAlias.prototype);
}
}
export class CommandNotFound extends CommandError {
constructor(
name: string,
commands: Array<Command>,
excluded?: Array<string>,
) {
super(
`Unknown command "${name}".${
didYouMeanCommand(name, commands, excluded)
}`,
);
Object.setPrototypeOf(this, UnknownCommand.prototype);
}
}
export class DuplicateType extends CommandError {
constructor(name: string) {
super(`Type with name "${name}" already exists.`);
Object.setPrototypeOf(this, DuplicateType.prototype);
}
}
export class DuplicateCompletion extends CommandError {
constructor(name: string) {
super(`Completion with name "${name}" already exists.`);
Object.setPrototypeOf(this, DuplicateCompletion.prototype);
}
}
export class DuplicateExample extends CommandError {
constructor(name: string) {
super(`Example with name "${name}" already exists.`);
Object.setPrototypeOf(this, DuplicateExample.prototype);
}
}
export class DuplicateEnvironmentVariable extends CommandError {
constructor(name: string) {
super(`Environment variable with name "${name}" already exists.`);
Object.setPrototypeOf(this, DuplicateEnvironmentVariable.prototype);
}
}
export class EnvironmentVariableSingleValue extends CommandError {
constructor(name: string) {
super(
`An environment variable can only have one value, but "${name}" has more than one.`,
);
Object.setPrototypeOf(this, EnvironmentVariableSingleValue.prototype);
}
}
export class EnvironmentVariableOptionalValue extends CommandError {
constructor(name: string) {
super(
`An environment variable cannot have an optional value, but "${name}" is defined as optional.`,
);
Object.setPrototypeOf(this, EnvironmentVariableOptionalValue.prototype);
}
}
export class EnvironmentVariableVariadicValue extends CommandError {
constructor(name: string) {
super(
`An environment variable cannot have an variadic value, but "${name}" is defined as variadic.`,
);
Object.setPrototypeOf(this, EnvironmentVariableVariadicValue.prototype);
}
}
export class DefaultCommandNotFound extends CommandError {
constructor(name: string, commands: Array<Command>) {
super(
`Default command "${name}" not found.${
didYouMeanCommand(name, commands)
}`,
);
Object.setPrototypeOf(this, DefaultCommandNotFound.prototype);
}
}
export class CommandExecutableNotFound extends CommandError {
constructor(name: string, files: Array<string>) {
super(
`Command executable not found: ${name}:\n - ${
files.join("\\n - ")
}`,
);
Object.setPrototypeOf(this, CommandExecutableNotFound.prototype);
}
}
export class UnknownCompletionCommand extends CommandError {
constructor(name: string, commands: Array<Command>) {
super(
`Auto-completion failed. Unknown command "${name}".${
didYouMeanCommand(name, commands)
}`,
);
Object.setPrototypeOf(this, UnknownCompletionCommand.prototype);
}
}
/* Validation errors. */
export class UnknownCommand extends ValidationError {
constructor(
name: string,
commands: Array<Command>,
excluded?: Array<string>,
) {
super(
`Unknown command "${name}".${
didYouMeanCommand(name, commands, excluded)
}`,
);
Object.setPrototypeOf(this, UnknownCommand.prototype);
}
}
export class NoArgumentsAllowed extends ValidationError {
constructor(name: string) {
super(`No arguments allowed for command "${name}".`);
Object.setPrototypeOf(this, NoArgumentsAllowed.prototype);
}
}
export class MissingArguments extends ValidationError {
constructor(args: Array<string>) {
super("Missing argument(s): " + args.join(", "));
Object.setPrototypeOf(this, MissingArguments.prototype);
}
}
export class MissingArgument extends ValidationError {
constructor(arg: string) {
super(`Missing argument "${arg}".`);
Object.setPrototypeOf(this, MissingArgument.prototype);
}
}
export class TooManyArguments extends ValidationError {
constructor(args: Array<string>) {
super(`Too many arguments: ${args.join(" ")}`);
Object.setPrototypeOf(this, TooManyArguments.prototype);
}
}