Ejemplo n.º 1
0
		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);
		}
Ejemplo n.º 2
0
		public Token(TokenType type, string value, TokenPosition position)
		{
			this.type = type;
			this.value = value;
			this.position = position;
		}