Skip to content

Commit

Permalink
Do not update TypecheckingResult
Browse files Browse the repository at this point in the history
  • Loading branch information
valis committed Jul 29, 2020
1 parent 4db21e3 commit 5f82ea9
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,7 @@ public TypecheckingResult applyExpression(Expression expr, boolean isExplicit, E
@Override
public List<SingleDependentLink> getImplicitParameters() {
List<SingleDependentLink> params = new ArrayList<>();
type = type.normalize(NormalizationMode.WHNF);
if (type instanceof PiExpression) {
type.getPiParameters(params, true);
}
type.getPiParameters(params, true);
return params;
}

Expand Down

0 comments on commit 5f82ea9

Please sign in to comment.