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

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

Issue 1059583002: Extension method support to move us closer to a valid List implementation. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: done Created 5 years, 9 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/DeltaBlue.js ('k') | test/codegen/expect/names.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 f6322f8d921e4df4d15d3c817e9c1cf2b2319ca3..657f263e9b2cd21289ae3723b22e34edd253a33f 100644
--- a/test/codegen/expect/cascade.js
+++ b/test/codegen/expect/cascade.js
@@ -65,8 +65,8 @@ var cascade;
// Function test_VariableDeclaration_first: () → void
function test_VariableDeclaration_first() {
let a = ((_) => {
- _.length = 2;
- _.add(3);
+ _[core.$length] = 2;
+ _[core.$add](3);
return _;
})(new core.List.from([])), b = 2;
core.print(a);
« no previous file with comments | « test/codegen/expect/DeltaBlue.js ('k') | test/codegen/expect/names.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698