swc/bundler/tests/.cache/deno/99a3bb90a2d488faece7beebb3f3d741aad15536.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

72 lines
1.5 KiB
TypeScript

// Loaded from https://deno.land/x/args@1.0.7/value-errors.ts
import {
ParseError,
} from "./types.ts";
/**
* Base class of all `ValueError`
*/
export abstract class ValueError implements ParseError {
/** Raw input */
public abstract readonly raw: string;
public abstract toString(): string;
}
/**
* `ValueError` class for when non-number raw input being place in where a number is expected
*/
export class NotANumber extends ValueError {
constructor(
/** Raw input */
public readonly raw: string,
) {
super();
}
public toString() {
return `Not a number: ${this.raw}`;
}
}
/**
* `ValueError` class for when non-integer raw input being place in where an integer is expected
*/
export class NotAnInteger extends ValueError {
constructor(
/** Raw input */
public readonly raw: string,
/** BigInt parsing error */
public readonly error: SyntaxError,
) {
super();
}
public toString() {
return `Not an integer: ${this.raw} (${this.error})`;
}
}
/**
* `ValueError` class for when raw input not matching any expected choice
* @template ValidChoice Union type of valid choices
*/
export class InvalidChoice<ValidChoice extends string | number>
extends ValueError {
constructor(
/** Raw input */
public readonly raw: string,
/** List of valid choices */
public readonly choices: readonly ValidChoice[],
) {
super();
}
public toString() {
return `Invalid choice: ${this.raw} is not one of ${this.choices.join(
", ",
)}`;
}
}