コード例 #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;
		}