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

cfml.parsing.reporting.IErrorReporter Maven / Gradle / Ivy

There is a newer version: 2.11.0
Show newest version
package cfml.parsing.reporting;

import org.antlr.runtime.BitSet;
import org.antlr.v4.runtime.ANTLRErrorListener;
import org.antlr.v4.runtime.IntStream;
import org.antlr.v4.runtime.RecognitionException;

public interface IErrorReporter extends ANTLRErrorListener {
	void reportError(String error);
	
	void reportError(RecognitionException re);
	
	void reportError(String[] tokenNames, RecognitionException e);
	
	void reportError(IntStream input, RecognitionException re, BitSet follow);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy