import {Command, ParseContext} from "./command.js"; import {LexInput} from "../lexer.js"; export class Show extends Command<{}> { isParseCandidate(token: LexInput): boolean { return this.isKeyword(token, 'show') } attemptParse(context: ParseContext): {} { return {} } getDisplayName(): string { return 'show' } }