org.antlr.v4.codegen.model.TokenInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antlr4 Show documentation
Show all versions of antlr4 Show documentation
The ANTLR 4 grammar compiler.
The newest version!
package org.antlr.v4.codegen.model;
public class TokenInfo {
public final int type;
public final String name;
public TokenInfo(int type, String name) {
this.type = type;
this.name = name;
}
@Override
public String toString() {
return "TokenInfo{" +
"type=" + type +
", name='" + name + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy