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..a887a0516d0f77172e09a28a25f88051b4b942de 100644 |
--- a/test/codegen/expect/dir/html_input_d.js |
+++ b/test/codegen/expect/dir/html_input_d.js |
@@ -1,8 +1,10 @@ |
-dart.library('dir/html_input_d', null, /* Imports */[ |
+dart_library.library('dir/html_input_d', null, /* Imports */[ |
+ "dart_runtime/dart", |
'dart/core' |
], /* Lazy imports */[ |
-], function(exports, core) { |
+], function(exports, dart, core) { |
'use strict'; |
+ let dartx = dart.dartx; |
function fib(n) { |
return n == 0 || n == 1 ? 1 : dart.notNull(fib(dart.notNull(n) - 1)) + dart.notNull(fib(dart.notNull(n) - 2)); |
} |