| Index: test/codegen/expect/fieldtest.js
|
| diff --git a/test/codegen/expect/fieldtest.js b/test/codegen/expect/fieldtest.js
|
| index f2cc022fea94f8795f579b743d7f019f23d133b3..6d9c5e969f0249866512cf264d71d4ed69d432ba 100644
|
| --- a/test/codegen/expect/fieldtest.js
|
| +++ b/test/codegen/expect/fieldtest.js
|
| @@ -1,13 +1,13 @@
|
| var fieldtest;
|
| (function(exports) {
|
| 'use strict';
|
| - class A extends dart.Object {
|
| + class A extends core.Object {
|
| A() {
|
| this.x = 42;
|
| }
|
| }
|
| let B$ = dart.generic(function(T) {
|
| - class B extends dart.Object {
|
| + class B extends core.Object {
|
| B() {
|
| this.x = null;
|
| this.y = null;
|
| @@ -16,7 +16,7 @@ var fieldtest;
|
| }
|
| return B;
|
| });
|
| - let B = B$(dynamic);
|
| + let B = B$(dart.dynamic);
|
| // Function foo: (A) → int
|
| function foo(a) {
|
| core.print(a.x);
|
|
|