| 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:
|
|
|