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
committerRowan Goemans <RB.Goemans@student.han.nl>2017-11-05 01:39:07 +0100
commit4006396da4c0d6040d78d88033d0b1fd166edbbf (patch)
treeac03461e9329c9c1a1b31910b7ed40348ac41a22 /src/CodeParser/CParser/Argument.ts
parent5ae892f8267c76473330e5da3d2eafdb4f6447ef (diff)
downloaddoxdocgen-4006396da4c0d6040d78d88033d0b1fd166edbbf.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();
+}