Skip to content

Commit

Permalink
forgotten renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinking committed Jun 3, 2015
1 parent bb2de3c commit aacb4a0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5915,7 +5915,7 @@ private void visitGenericBaseMemberReference(
Type outerType =
scope.getDeclaringType(member);
TypedReference pr =
member.getProducedTypedReference(
member.appliedTypedReference(
outerType, NO_TYPE_ARGS);
that.setTarget(pr);
Type t = genericFunctionType(g, scope, member, pr);
Expand Down Expand Up @@ -6408,7 +6408,7 @@ private void visitBaseMemberExpression(
that.getScope()
.getDeclaringType(member);
TypedReference pr =
member.getProducedTypedReference(outerType,
member.appliedTypedReference(outerType,
typeArgs, that.getAssigned());
that.setTarget(pr);
boolean direct = that.getDirectlyInvoked();
Expand Down Expand Up @@ -8710,7 +8710,7 @@ private void setMetamodelType(Tree.MemberLiteral that,
outerType, typeArgs, tal, that)) {
TypedReference pr =
outerType==null ?
method.getProducedTypedReference(null, typeArgs) :
method.appliedTypedReference(null, typeArgs) :
outerType.getTypedMember(method, typeArgs);
that.setTarget(pr);
that.setTypeModel(unit.getFunctionMetatype(pr));
Expand All @@ -8730,7 +8730,7 @@ else if (result instanceof Value) {
}
else {
TypedReference pr =
value.getProducedTypedReference(outerType,
value.appliedTypedReference(outerType,
NO_TYPE_ARGS);
that.setTarget(pr);
that.setTypeModel(unit.getValueMetatype(pr));
Expand Down

0 comments on commit aacb4a0

Please sign in to comment.