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

Unified Diff: test/codegen/expect/dart/_js_primitives.js

Issue 977613002: Make int and double nullable by default (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: actually upload changes Created 5 years, 10 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: test/codegen/expect/dart/_js_primitives.js
diff --git a/test/codegen/expect/dart/_js_primitives.js b/test/codegen/expect/dart/_js_primitives.js
index f286fc6ed9eaac439112c6182faf6f9dd82f374a..3936427701ea67f8924f71c8d3182b9cc47a19f5 100644
--- a/test/codegen/expect/dart/_js_primitives.js
+++ b/test/codegen/expect/dart/_js_primitives.js
@@ -7,7 +7,7 @@ var _js_primitives;
dartPrint(string);
return;
}
- if (dart.notNull(typeof console == "object") && dart.notNull(typeof console.log != "undefined")) {
+ if (typeof console == "object" && typeof console.log != "undefined") {
console.log(string);
return;
}

Powered by Google App Engine
This is Rietveld 408576698