summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CParser/Token.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/CodeParser/CParser/Token.ts')
-rw-r--r--src/CodeParser/CParser/Token.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/CodeParser/CParser/Token.ts b/src/CodeParser/CParser/Token.ts
deleted file mode 100644
index 0cbd412..0000000
--- a/src/CodeParser/CParser/Token.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-export enum TokenType {
- Symbol,
- Pointer,
- Reference,
- ArraySubscript,
- OpenParenthesis,
- CloseParenthesis,
- CurlyBlock,
- Assignment,
- Comma,
- Arrow,
- CommentBlock,
- CommentLine,
- Ellipsis,
- Attribute,
- Specifier,
-}
-
-export class Token {
- public Type: TokenType;
- public Value: string;
-
- constructor(type: TokenType, value: string) {
- this.Type = type;
- this.Value = value;
- }
-}