summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/transform/base.ts
diff options
context:
space:
mode:
Diffstat (limited to 'llparse-frontend/src/transform/base.ts')
-rw-r--r--llparse-frontend/src/transform/base.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/llparse-frontend/src/transform/base.ts b/llparse-frontend/src/transform/base.ts
new file mode 100644
index 0000000..5397326
--- /dev/null
+++ b/llparse-frontend/src/transform/base.ts
@@ -0,0 +1,4 @@
+export abstract class Transform {
+ constructor(public readonly name: string) {
+ }
+}