summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser/Argument.ts
diff options
context:
space:
mode:
authorRowan Goemans <RB.Goemans@student.han.nl>2017-11-05 01:39:07 +0100
committerChristoph Schlosser <christophschlosser@users.noreply.github.com>2017-11-05 18:45:08 +0100
commit1c5cce4d4d8af15bbd293956814a0fd0cb1f5313 (patch)
treeac03461e9329c9c1a1b31910b7ed40348ac41a22 /src/CodeParser/CParser/Argument.ts
parent666f392bd23574f57689e9a9ea6d6a05a9bd2f97 (diff)
downloaddoxdocgen-1c5cce4d4d8af15bbd293956814a0fd0cb1f5313.tar.gz
-- Cleaned up some code and refactored functions.
-- Added support for infinitely nesting function pointers. -- Added support for assignment of functions with trailing returns. -- Added support for desctructors.
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();
+}