diff options
Diffstat (limited to 'src/Lang/C/CToken.ts')
| -rw-r--r-- | src/Lang/C/CToken.ts | 26 |
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; - } -} |