Skip to content

Commit

Permalink
fixed files form Closure #111
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent c71c743 commit 08ec0fe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public class ClosureReverseAbstractInterpreter
new RestrictByTrueTypeOfResultVisitor() {
@Override
protected JSType caseTopType(JSType topType) {
return topType;
return topType.isAllType() ?
getNativeType(ARRAY_TYPE) : topType;
}

@Override
Expand Down

0 comments on commit 08ec0fe

Please sign in to comment.