Index: lib/runtime/dart/_runtime.js |
diff --git a/lib/runtime/dart/_runtime.js b/lib/runtime/dart/_runtime.js |
index 32172bcdb8b6633e75d4ea2ac08bff2df85fe480..506049d5e5d8deb63a95577feb2df4c2553fbf77 100644 |
--- a/lib/runtime/dart/_runtime.js |
+++ b/lib/runtime/dart/_runtime.js |
@@ -3,6 +3,7 @@ |
// BSD-style license that can be found in the LICENSE file. |
dart_library.library('dart/_runtime', null, /* Imports */[ |
+ 'dart/_utils', |
'dart/_classes', |
'dart/_errors', |
'dart/_generators', |
@@ -11,7 +12,7 @@ dart_library.library('dart/_runtime', null, /* Imports */[ |
'dart/_types', |
], /* Lazy Imports */[ |
'dart/_js_helper' |
-], function(exports, classes, errors, generators, operations, rtti, types, |
+], function(exports, dart_utils, classes, errors, generators, operations, rtti, types, |
_js_helper) { |
'use strict'; |
@@ -64,7 +65,7 @@ dart_library.library('dart/_runtime', null, /* Imports */[ |
]); |
// From dart_utils |
- exportFrom(dart_utils, ['copyProperties', 'export']); |
+ exportFrom(dart_utils, ['copyProperties', 'export_']); |
// Renames |
exports.defineLazyClass = _export(dart_utils.defineLazy); |
exports.defineLazyProperties = _export(dart_utils.defineLazy); |