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