| Index: test/codegen/expect/domtest.js
|
| diff --git a/test/codegen/expect/domtest.js b/test/codegen/expect/domtest.js
|
| index e9cfb579eaf7d0a582ca5b83370cde75d236731c..767f1482ea304a61e9b4eb62aaa391a0ded67e35 100644
|
| --- a/test/codegen/expect/domtest.js
|
| +++ b/test/codegen/expect/domtest.js
|
| @@ -1,7 +1,8 @@
|
| -var domtest = dart.defineLibrary(domtest, {});
|
| -var dom = dart.import(dom);
|
| -var core = dart.import(core);
|
| -(function(exports, dom, core) {
|
| +dart.library('domtest', null, /* Imports */[
|
| + 'sunflower/dom',
|
| + 'dart/core'
|
| +], /* Lazy imports */[
|
| +], function(exports, dom, core) {
|
| 'use strict';
|
| function testNativeIndexers() {
|
| let nodes = dom.document.querySelector('body').childNodes;
|
| @@ -14,4 +15,4 @@ var core = dart.import(core);
|
| dart.fn(testNativeIndexers);
|
| // Exports:
|
| exports.testNativeIndexers = testNativeIndexers;
|
| -})(domtest, dom, core);
|
| +});
|
|
|