use of org.eclipse.n4js.ts.typeRefs.TypeRef in project n4js by eclipse.
the class InternalTypeSystem method lowerBoundImpl.
protected Result<TypeRef> lowerBoundImpl(final RuleEnvironment G, final RuleApplicationTrace _trace_, final ExistentialTypeRef existentialTypeRef) throws RuleFailedException {
try {
final RuleApplicationTrace _subtrace_ = newTrace(_trace_);
final Result<TypeRef> _result_ = applyRuleLowerBoundExistentialTypeRef(G, _subtrace_, existentialTypeRef);
addToTrace(_trace_, new Provider<Object>() {
public Object get() {
return ruleName("lowerBoundExistentialTypeRef") + stringRepForEnv(G) + " |~ " + stringRep(existentialTypeRef) + " \\/ " + stringRep(_result_.getFirst());
}
});
addAsSubtrace(_trace_, _subtrace_);
return _result_;
} catch (Exception e_applyRuleLowerBoundExistentialTypeRef) {
lowerBoundThrowException(ruleName("lowerBoundExistentialTypeRef") + stringRepForEnv(G) + " |~ " + stringRep(existentialTypeRef) + " \\/ " + "TypeRef", LOWERBOUNDEXISTENTIALTYPEREF, e_applyRuleLowerBoundExistentialTypeRef, existentialTypeRef, new ErrorInformation[] { new ErrorInformation(existentialTypeRef) });
return null;
}
}
use of org.eclipse.n4js.ts.typeRefs.TypeRef in project n4js by eclipse.
the class InternalTypeSystem method typeImpl.
protected Result<TypeRef> typeImpl(final RuleEnvironment G, final RuleApplicationTrace _trace_, final N4EnumLiteral enumLiteral) throws RuleFailedException {
try {
final RuleApplicationTrace _subtrace_ = newTrace(_trace_);
final Result<TypeRef> _result_ = applyRuleTypeN4EnumLiteral(G, _subtrace_, enumLiteral);
addToTrace(_trace_, new Provider<Object>() {
public Object get() {
return ruleName("typeN4EnumLiteral") + stringRepForEnv(G) + " |- " + stringRep(enumLiteral) + " : " + stringRep(_result_.getFirst());
}
});
addAsSubtrace(_trace_, _subtrace_);
return _result_;
} catch (Exception e_applyRuleTypeN4EnumLiteral) {
typeThrowException(ruleName("typeN4EnumLiteral") + stringRepForEnv(G) + " |- " + stringRep(enumLiteral) + " : " + "TypeRef", TYPEN4ENUMLITERAL, e_applyRuleTypeN4EnumLiteral, enumLiteral, new ErrorInformation[] { new ErrorInformation(enumLiteral) });
return null;
}
}
use of org.eclipse.n4js.ts.typeRefs.TypeRef in project n4js by eclipse.
the class InternalTypeSystem method applyRuleSubtypeTypeArgument.
protected Result<Boolean> applyRuleSubtypeTypeArgument(final RuleEnvironment G, final RuleApplicationTrace _trace_, final TypeArgument left, final TypeArgument right) throws RuleFailedException {
/* G |~ left /\ var TypeRef leftUpper */
TypeRef leftUpper = null;
Result<TypeRef> result = upperBoundInternal(G, _trace_, left);
checkAssignableTo(result.getFirst(), TypeRef.class);
leftUpper = (TypeRef) result.getFirst();
/* G |~ right \/ var TypeRef rightLower */
TypeRef rightLower = null;
Result<TypeRef> result_1 = lowerBoundInternal(G, _trace_, right);
checkAssignableTo(result_1.getFirst(), TypeRef.class);
rightLower = (TypeRef) result_1.getFirst();
if (((leftUpper == left) && (rightLower == right))) {
/* fail */
throwForExplicitFail();
/* "Prevent endless loop, check rules, see subtypeTypeArgument" */
} else {
/* G |- leftUpper <: rightLower */
subtypeInternal(G, _trace_, leftUpper, rightLower);
}
return new Result<Boolean>(true);
}
use of org.eclipse.n4js.ts.typeRefs.TypeRef in project n4js by eclipse.
the class InternalTypeSystem method applyRuleTypeConditionalExpression.
protected Result<TypeRef> applyRuleTypeConditionalExpression(final RuleEnvironment G, final RuleApplicationTrace _trace_, final ConditionalExpression expr) throws RuleFailedException {
// output parameter
TypeRef T = null;
/* G |- expr.trueExpression : var TypeRef left */
Expression _trueExpression = expr.getTrueExpression();
TypeRef left = null;
Result<TypeRef> result = typeInternal(G, _trace_, _trueExpression);
checkAssignableTo(result.getFirst(), TypeRef.class);
left = (TypeRef) result.getFirst();
/* G |- expr.falseExpression : var TypeRef right */
Expression _falseExpression = expr.getFalseExpression();
TypeRef right = null;
Result<TypeRef> result_1 = typeInternal(G, _trace_, _falseExpression);
checkAssignableTo(result_1.getFirst(), TypeRef.class);
right = (TypeRef) result_1.getFirst();
T = this.typeSystemHelper.createUnionType(G, left, right);
return new Result<TypeRef>(T);
}
use of org.eclipse.n4js.ts.typeRefs.TypeRef in project n4js by eclipse.
the class InternalTypeSystem method typeImpl.
protected Result<TypeRef> typeImpl(final RuleEnvironment G, final RuleApplicationTrace _trace_, final TGetter tgetter) throws RuleFailedException {
try {
final RuleApplicationTrace _subtrace_ = newTrace(_trace_);
final Result<TypeRef> _result_ = applyRuleTypeTGetter(G, _subtrace_, tgetter);
addToTrace(_trace_, new Provider<Object>() {
public Object get() {
return ruleName("typeTGetter") + stringRepForEnv(G) + " |- " + stringRep(tgetter) + " : " + stringRep(_result_.getFirst());
}
});
addAsSubtrace(_trace_, _subtrace_);
return _result_;
} catch (Exception e_applyRuleTypeTGetter) {
typeThrowException(ruleName("typeTGetter") + stringRepForEnv(G) + " |- " + stringRep(tgetter) + " : " + "TypeRef", TYPETGETTER, e_applyRuleTypeTGetter, tgetter, new ErrorInformation[] { new ErrorInformation(tgetter) });
return null;
}
}
Aggregations