summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/code/field.ts
diff options
context:
space:
mode:
Diffstat (limited to 'llparse-frontend/src/code/field.ts')
-rw-r--r--llparse-frontend/src/code/field.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/llparse-frontend/src/code/field.ts b/llparse-frontend/src/code/field.ts
new file mode 100644
index 0000000..c60b8ef
--- /dev/null
+++ b/llparse-frontend/src/code/field.ts
@@ -0,0 +1,8 @@
+import { Code, Signature } from './base';
+
+export abstract class Field extends Code {
+ constructor(signature: Signature, cacheKey: string, name: string,
+ public readonly field: string) {
+ super(signature, cacheKey, name);
+ }
+}