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/C/CToken.ts | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/Lang/C/CToken.ts (limited to 'src/Lang/C/CToken.ts') diff --git a/src/Lang/C/CToken.ts b/src/Lang/C/CToken.ts deleted file mode 100644 index 75214aa..0000000 --- a/src/Lang/C/CToken.ts +++ /dev/null @@ -1,26 +0,0 @@ -export enum CTokenType { - Symbol, - Pointer, - Reference, - ArraySubscript, - OpenParenthesis, - CloseParenthesis, - CurlyBlock, - Assignment, - Comma, - Arrow, - CommentBlock, - CommentLine, - Ellipsis, - Attribute, -} - -export class CToken { - public type: CTokenType; - public value: string; - - constructor(type: CTokenType, value: string) { - this.type = type; - this.value = value; - } -} -- cgit v1.2.3