Skip to main content
summaryrefslogtreecommitdiffstats
blob: af663856201cb21438899367803a564fb672e03f (plain) (blame)
1
2
3
4
5
6
7
8
package org.eclipse.internal.xtend.xtend.parser;

public interface XtendError {
	public int getStart();
	public int getEnd();
	public int getLine();
	public String getMessage();
}

Back to the top