use of org.eclipse.n4js.ts.typeRefs.FunctionTypeRef in project n4js by eclipse.
the class InternalTypeSystem method applyRuleUpperBoundFunctionTypeRef.
protected Result<TypeRef> applyRuleUpperBoundFunctionTypeRef(final RuleEnvironment G, final RuleApplicationTrace _trace_, final FunctionTypeRef F) throws RuleFailedException {
// output parameter
TypeRef T = null;
T = this.applyRuleUpperBoundFunctionTypeExprOrRef(G, _trace_, F).getValue();
return new Result<TypeRef>(T);
}
Aggregations