summaryrefslogtreecommitdiff
path: root/source/Transpiler.def
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-12-03 09:36:26 +0100
committerEugen Wissner <belka@caraus.de>2025-12-03 09:36:26 +0100
commit8eb87757a0a3df6bc36f7251f010c849916455df (patch)
tree230d6fe4bb3f9996c43c8b5f96f1f580a7c27fa9 /source/Transpiler.def
parent1c2a8e6da852016bedcc70e45cd328836a20f18a (diff)
downloadelna-8eb87757a0a3df6bc36f7251f010c849916455df.tar.gz
Remove modula-2 definitions
Diffstat (limited to 'source/Transpiler.def')
-rw-r--r--source/Transpiler.def20
1 files changed, 0 insertions, 20 deletions
diff --git a/source/Transpiler.def b/source/Transpiler.def
deleted file mode 100644
index 5f8c219..0000000
--- a/source/Transpiler.def
+++ /dev/null
@@ -1,20 +0,0 @@
-DEFINITION MODULE Transpiler;
-
-FROM FIO IMPORT File;
-
-FROM Common IMPORT ShortString;
-FROM Lexer IMPORT PLexer, Lexer;
-FROM Parser IMPORT PAstModule;
-
-TYPE
- TranspilerContext = RECORD
- input_name: ShortString;
- output: File;
- definition: File;
- indentation: CARDINAL
- END;
- PTranspilerContext = POINTER TO TranspilerContext;
-
-PROCEDURE transpile(ast_module: PAstModule; output: File; definition: File; input_name: ShortString);
-
-END Transpiler.