All Downloads are FREE. Search and download functionalities are using the official Maven repository.

chapi.ast.antlr.RustParserBase Maven / Gradle / Ivy

Go to download

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