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

prompto.parser.OParserFactory Maven / Gradle / Ivy

The newest version!
package prompto.parser;

import org.antlr.v4.runtime.CharStreams;

public class OParserFactory implements IParserFactory {

	@Override
	public ILexer newLexer() {
		return new ONamingLexer(CharStreams.fromString(""));
	}

	@Override
	public IParser newParser() {
		return new OCleverParser("");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy