Skip to main content
summaryrefslogtreecommitdiffstats
blob: 91ede5292c17d0bf2c45330970b6b3bbc5d478eb (plain) (blame)
1
2
3
4
5
6
7
package org.eclipse.xtend.expression;

import org.eclipse.internal.xtend.expression.ast.SyntaxElement;

public interface NullEvaluationHandler {
	public Object handleNullEvaluation(SyntaxElement element, ExecutionContext ctx);
}

Back to the top