Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix: fix wrong usage of == caught by closure compiler (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
vikerman authored and mhevery committed Nov 22, 2016
1 parent 3b94918 commit d7d8eb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/zone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ const Zone: ZoneType = (function(global: any) {
frames[i] += ` [${zoneFrame.parent.zone.name} => ${zoneFrame.zone.name}]`;
zoneFrame = zoneFrame.parent;
} else {
zoneFrame == null;
zoneFrame = null;
}
} else {
frames[i] += ` [${zoneFrame.zone.name}]`;
Expand Down

0 comments on commit d7d8eb5

Please sign in to comment.