From 31f6517aa5d8d3ccdd0b39880337c000943d08c1 Mon Sep 17 00:00:00 2001 From: Rowan Goemans Date: Sun, 31 Dec 2017 04:07:55 +0100 Subject: -- Completed unit tests for operators. Conversion operators aren't working yet. -- Renamed all C things to Cpp since that is really what they are. -- Made empty files for the remaining unit tests. --- src/Lang/Cpp/CppArgument.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/Lang/Cpp/CppArgument.ts (limited to 'src/Lang/Cpp/CppArgument.ts') diff --git a/src/Lang/Cpp/CppArgument.ts b/src/Lang/Cpp/CppArgument.ts new file mode 100644 index 0000000..9b781c8 --- /dev/null +++ b/src/Lang/Cpp/CppArgument.ts @@ -0,0 +1,6 @@ +import { CppParseTree } from "./CppParseTree"; + +export class CppArgument { + public name: string = null; + public type: CppParseTree = new CppParseTree(); +} -- cgit v1.2.3