prompto.parser.MParserFactory Maven / Gradle / Ivy
The newest version!
package prompto.parser;
import org.antlr.v4.runtime.CharStreams;
public class MParserFactory implements IParserFactory {
@Override
public ILexer newLexer() {
return new MIndentingLexer(CharStreams.fromString(""));
}
@Override
public IParser newParser() {
return new MCleverParser("");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy