diff options
Diffstat (limited to 'llparse-builder/src/code/match.ts')
-rw-r--r-- | llparse-builder/src/code/match.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llparse-builder/src/code/match.ts b/llparse-builder/src/code/match.ts new file mode 100644 index 0000000..631376a --- /dev/null +++ b/llparse-builder/src/code/match.ts @@ -0,0 +1,7 @@ +import { Code } from './base'; + +export class Match extends Code { + constructor(name: string) { + super('match', name); + } +} |