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

Unified Diff: test/codegen/expect/dir/html_input_c.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/dir/html_input_c.js
diff --git a/test/codegen/expect/dir/html_input_c.js b/test/codegen/expect/dir/html_input_c.js
index dc2fc3141abc6b470909bc87c6c1a825e572ae6c..5dc4609ebb2f59a9bbbb71912ad4057af3d847a9 100644
--- a/test/codegen/expect/dir/html_input_c.js
+++ b/test/codegen/expect/dir/html_input_c.js
@@ -3,7 +3,7 @@ var html_input_c;
'use strict';
dart.defineLazyProperties(exports, {
get y() {
- return 3 + html_input_e.w;
+ return 3 + dart.notNull(html_input_e.w);
},
set y(_) {}
});

Powered by Google App Engine
This is Rietveld 408576698