summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser/Argument.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/CodeParser/CParser/Argument.ts')
-rw-r--r--src/CodeParser/CParser/Argument.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CodeParser/CParser/Argument.ts b/src/CodeParser/CParser/Argument.ts
new file mode 100644
index 0000000..4cd793d
--- /dev/null
+++ b/src/CodeParser/CParser/Argument.ts
@@ -0,0 +1,6 @@
+import { ParseTree } from "./ParseTree";
+
+export class Argument {
+ public Name: string = undefined;
+ public Type: ParseTree = new ParseTree();
+}