Files
nand2tetris/JackCompiler/JackAnalyzer/Token.cs

16 lines
230 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace JackAnalyzer
{
enum TokenType
{
keyword,
identifier,
symbol,
integerConstant,
stringConstant
}
}