mirror of
https://github.com/2003scape/deep-c-rsc.git
synced 2024-03-22 05:49:51 -04:00
11 lines
328 B
Java
11 lines
328 B
Java
|
package com.ivmaisoft.jcgo;
|
||
|
|
||
|
class Token {
|
||
|
int kind; // token kind
|
||
|
int pos; // token position in the source text (starting at 0)
|
||
|
int col; // token column (starting at 0)
|
||
|
int line; // token line (starting at 1)
|
||
|
String str; // exact string value
|
||
|
String val; // token string value (uppercase if ignoreCase)
|
||
|
}
|