summaryrefslogtreecommitdiff
path: root/src/main/java/no/eliashaugsbakk/kompilator/tokenization/Token.java
blob: 519b6b6715544aabe00b1877e957e2bdae306844 (plain)
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;
  }
}