1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package no.eliashaugsbakk.kompilator.tokenization; class Token { TokenType type; String value; int line; int colum; Token(TokenType type, String value, int line, int colum) { this.type = type; this.value = value; this.line = line; this.colum = colum; } }