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

prompto.parser.ILexer Maven / Gradle / Ivy

The newest version!
package prompto.parser;

import java.io.IOException;
import java.io.InputStream;

import org.antlr.v4.runtime.Token;
import org.antlr.v4.runtime.TokenSource;

import prompto.problem.IProblemListener;


public interface ILexer extends TokenSource {
	Dialect getDialect();
	void setProblemListener(IProblemListener listener);
	@Override
	Token nextToken();
	void reset(InputStream input) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy