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

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

Issue 1067553002: update baseline (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | no next file » | 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 457df73188c1fc39685519f9fd0f2497f1fddbc0..2e32cc535c5aa360857b231e225c8a3b89ddbb7a 100644
--- a/test/codegen/expect/cascade.js
+++ b/test/codegen/expect/cascade.js
@@ -82,10 +82,10 @@ var cascade;
let Base = Base$();
class Foo extends Base$(core.int) {
test_final_field_generic(t) {
- this.x.add(1);
- this.x.add(2);
- this.x.add(3);
- this.x.add(4);
+ this.x[core.$add](1);
+ this.x[core.$add](2);
+ this.x[core.$add](3);
+ this.x[core.$add](4);
}
}
// Exports:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698