| Index: test/codegen/expect/sunflower/dom.js
|
| diff --git a/test/codegen/expect/sunflower/dom.js b/test/codegen/expect/sunflower/dom.js
|
| index 366b6ef6f198a8f0b69a2354180ba6a77c5d773f..81ac62a0368032da1940fdc776b6c4f08204c1fe 100644
|
| --- a/test/codegen/expect/sunflower/dom.js
|
| +++ b/test/codegen/expect/sunflower/dom.js
|
| @@ -1,6 +1,7 @@
|
| -var dom = dart.defineLibrary(dom, window);
|
| -var core = dart.import(core);
|
| -(function(exports, core) {
|
| +dart.library('dom', window, /* Imports */[
|
| + 'dart/core'
|
| +], /* Lazy imports */[
|
| +], function(exports, core) {
|
| 'use strict';
|
| class JsName extends core.Object {
|
| JsName(opts) {
|
| @@ -46,4 +47,4 @@ var core = dart.import(core);
|
| exports.RenderingContext = RenderingContext;
|
| exports.CanvasDrawingStyles = CanvasDrawingStyles;
|
| exports.CanvasPathMethods = CanvasPathMethods;
|
| -})(dom, core);
|
| +});
|
|
|