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

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

Issue 1976383002: enable top-level @JS() getters (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 7 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/browser/language_tests.js ('k') | test/codegen/expect/methods.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/cascade.js
diff --git a/test/codegen/expect/cascade.js b/test/codegen/expect/cascade.js
index b5c2bf7f4b0f7bfb372f917adbb20169fe19f8cc..7aed8e3e06de41251a59dfd895882225959ce30a 100644
--- a/test/codegen/expect/cascade.js
+++ b/test/codegen/expect/cascade.js
@@ -18,8 +18,8 @@ dart_library.library('cascade', null, /* Imports */[
a = null;
});
let _ = a;
- dart.dcall(_.x);
- dart.dcall(_.x);
+ dart.dsend(_, 'x');
+ dart.dsend(_, 'x');
core.print(a);
};
dart.fn(cascade.test_closure_with_mutate, dart.void, []);
@@ -28,8 +28,8 @@ dart_library.library('cascade', null, /* Imports */[
a.x = dart.fn(() => {
core.print(a);
});
- dart.dcall(a.x);
- dart.dcall(a.x);
+ dart.dsend(a, 'x');
+ dart.dsend(a, 'x');
core.print(a);
};
dart.fn(cascade.test_closure_without_mutate, dart.void, []);
« no previous file with comments | « test/browser/language_tests.js ('k') | test/codegen/expect/methods.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698