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

prompto.parser.IParser Maven / Gradle / Ivy

The newest version!
package prompto.parser;

import java.io.InputStream;

import prompto.declaration.DeclarationList;
import prompto.problem.IProblemListener;

public interface IParser {

	ILexer getLexer();
	void setProblemListener(IProblemListener listener);
	DeclarationList parse(String path, InputStream data) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy