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