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

Unified Diff: test/codegen/expect/node_modules.js

Issue 1757343002: upgrade to latest analyzer (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 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
« no previous file with comments | « test/codegen/expect/names.js ('k') | test/codegen/expect/opassign.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/node_modules.js
diff --git a/test/codegen/expect/node_modules.js b/test/codegen/expect/node_modules.js
index 5590ecb00c2a695600065ceb407a575942188a27..3b5f99e26486bc20ee9d094f5494c16c8f8919ad 100644
--- a/test/codegen/expect/node_modules.js
+++ b/test/codegen/expect/node_modules.js
@@ -25,19 +25,19 @@ const constant = "abc";
exports.finalConstant = "abc";
dart.defineLazyProperties(exports, {
get lazy() {
- return dart.as(dart.fn(() => {
+ return dart.fn(() => {
core.print('lazy');
return "abc";
- })(), core.String);
+ }, core.String, [])();
}
});
exports.mutable = "abc";
dart.defineLazyProperties(exports, {
get lazyMutable() {
- return dart.as(dart.fn(() => {
+ return dart.fn(() => {
core.print('lazyMutable');
return "abc";
- })(), core.String);
+ }, core.String, [])();
},
set lazyMutable(_) {}
});
« no previous file with comments | « test/codegen/expect/names.js ('k') | test/codegen/expect/opassign.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698