Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: compiler/lib/implementation/core.js

Issue 9250005: Fix dartc in optimized mode (broken in r3358). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: compiler/lib/implementation/core.js
diff --git a/compiler/lib/implementation/core.js b/compiler/lib/implementation/core.js
index ee94a7bb527e40ef08888dbea708dc183fe72d50..3ac10f35b3b2872d27cb5d9097127e97eba596dc 100644
--- a/compiler/lib/implementation/core.js
+++ b/compiler/lib/implementation/core.js
@@ -369,7 +369,7 @@ function EQ$operator(val1, val2) {
} else if (typeof(val1) == typeof(val2) && typeof val1 != 'object') {
// number, boolean, string
return val1 === val2;
- }
+ }
return val1.EQ$operator(val2);
}

Powered by Google App Engine
This is Rietveld 408576698