| Index: test/codegen/expect/covariance.js
|
| diff --git a/test/codegen/expect/covariance.js b/test/codegen/expect/covariance.js
|
| index e3d53be0aeaa3e435ba06864959541bd30a32626..59f4e3d180a80274ffa812981868b1968d1a2c05 100644
|
| --- a/test/codegen/expect/covariance.js
|
| +++ b/test/codegen/expect/covariance.js
|
| @@ -1,5 +1,6 @@
|
| -var covariance;
|
| -(function(exports) {
|
| +var covariance = dart.defineLibrary(covariance, {});
|
| +var core = dart.import(core);
|
| +(function(exports, core) {
|
| 'use strict';
|
| let _t = Symbol('_t');
|
| let Foo$ = dart.generic(function(T) {
|
| @@ -38,4 +39,4 @@ var covariance;
|
| exports.Foo = Foo;
|
| exports.Bar = Bar;
|
| exports.main = main;
|
| -})(covariance || (covariance = {}));
|
| +})(covariance, core);
|
|
|