diff options
| author | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-11-05 01:39:07 +0100 |
|---|---|---|
| committer | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-11-05 01:39:07 +0100 |
| commit | 4006396da4c0d6040d78d88033d0b1fd166edbbf (patch) | |
| tree | ac03461e9329c9c1a1b31910b7ed40348ac41a22 /src/CodeParser/CParser/Argument.ts | |
| parent | 5ae892f8267c76473330e5da3d2eafdb4f6447ef (diff) | |
| download | doxdocgen-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.ts | 6 |
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(); +} |