
chapi.ast.antlr.RustParserBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chapi-ast-rust Show documentation
Show all versions of chapi-ast-rust Show documentation
Chapi is A common language meta information convertor, convert different languages to same meta-data model
The newest version!
package chapi.ast.antlr;
import org.antlr.v4.runtime.*;
public abstract class RustParserBase extends Parser {
public RustParserBase(TokenStream input){
super(input);
}
public boolean next(char expect){
return _input.LA(1) == expect;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy