diff options
Diffstat (limited to 'src/CodeParser/CParser/Token.ts')
| -rw-r--r-- | src/CodeParser/CParser/Token.ts | 27 |
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; - } -} |