Skip to content

Commit

Permalink
fixed files form Closure #104
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent bdb44ab commit 2923e69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ JSType meet(JSType that) {
builder.addAlternate(that);
}
JSType result = builder.build();
if (result != null) {
if (!result.isNoType()) {
return result;
} else if (this.isObject() && that.isObject()) {
return getNativeType(JSTypeNative.NO_OBJECT_TYPE);
Expand Down

0 comments on commit 2923e69

Please sign in to comment.