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

prompto.problem.ProblemRaiser Maven / Gradle / Ivy

The newest version!
package prompto.problem;

import prompto.error.SyntaxError;
import prompto.problem.IProblem.Type;

public class ProblemRaiser extends ProblemListener {

	@Override
	void addProblem(IProblem problem) {
		if(problem.getType()==Type.ERROR)
			throw new SyntaxError(problem.getMessage() + getEnclosingDeclaration());
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy