示例#1
0
文件: Token.cs 项目: mswf/game-a-week
		public Token(TokenType type, string value, int index, int line, int column)
		{
			this.type = type;
			this.value = value;

			this.position = new TokenPosition(index, line, column);
		}
示例#2
0
文件: Token.cs 项目: mswf/game-a-week
		public Token(TokenType type, string value, TokenPosition position)
		{
			this.type = type;
			this.value = value;
			this.position = position;
		}