| Index: test/codegen/expect/dir/html_input_d.js
|
| diff --git a/test/codegen/expect/dir/html_input_d.js b/test/codegen/expect/dir/html_input_d.js
|
| index bb0b69dc0731136005753fc40d27fb68acac5d09..aacfaf9f756c853fa50acab394bc2740864ac9fa 100644
|
| --- a/test/codegen/expect/dir/html_input_d.js
|
| +++ b/test/codegen/expect/dir/html_input_d.js
|
| @@ -1,7 +1,9 @@
|
| -dart.library('dir/html_input_d', null, /* Imports */[
|
| +loader.library('dir/html_input_d', null, /* Imports */[
|
| + "dart/dart_runtime",
|
| + "dart/dartx",
|
| 'dart/core'
|
| ], /* Lazy imports */[
|
| -], function(exports, core) {
|
| +], function(exports, dart, dartx, core) {
|
| 'use strict';
|
| function fib(n) {
|
| return n == 0 || n == 1 ? 1 : dart.notNull(fib(dart.notNull(n) - 1)) + dart.notNull(fib(dart.notNull(n) - 2));
|
|
|