summaryrefslogtreecommitdiffstats
path: root/src/Lang/C/CToken.ts
diff options
context:
space:
mode:
authorRowan Goemans <RB.Goemans@student.han.nl>2017-12-31 04:07:55 +0100
committerChristoph Schlosser <christophschlosser@users.noreply.github.com>2018-02-20 22:02:22 +0100
commit31f6517aa5d8d3ccdd0b39880337c000943d08c1 (patch)
tree2c3c5240470a592f4c0bd134d779f4f3c25d6b2b /src/Lang/C/CToken.ts
parent10aac7196a3a701860525d0f466896efe182d39a (diff)
downloaddoxdocgen-31f6517aa5d8d3ccdd0b39880337c000943d08c1.tar.gz
-- 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.
Diffstat (limited to 'src/Lang/C/CToken.ts')
-rw-r--r--src/Lang/C/CToken.ts26
1 files changed, 0 insertions, 26 deletions
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;
- }
-}