summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/code/match.ts
diff options
context:
space:
mode:
Diffstat (limited to 'llparse-frontend/src/code/match.ts')
-rw-r--r--llparse-frontend/src/code/match.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/llparse-frontend/src/code/match.ts b/llparse-frontend/src/code/match.ts
new file mode 100644
index 0000000..819d2af
--- /dev/null
+++ b/llparse-frontend/src/code/match.ts
@@ -0,0 +1,7 @@
+import { External } from './external';
+
+export class Match extends External {
+ constructor(name: string) {
+ super('match', name);
+ }
+}