Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(497)

Unified Diff: lib/runtime/dart/_isolate_helper.js

Issue 1122133003: fixes #157, renaming local library identifiers if needed. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: new approach Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/runtime/dart/_isolate_helper.js
diff --git a/lib/runtime/dart/_isolate_helper.js b/lib/runtime/dart/_isolate_helper.js
index 911353eac5772c405a471c63987f71901f655789..d8419d466867c382ab2e5cc37f029203da4ee809 100644
--- a/lib/runtime/dart/_isolate_helper.js
+++ b/lib/runtime/dart/_isolate_helper.js
@@ -1,5 +1,14 @@
-var _isolate_helper;
-(function(exports) {
+var _isolate_helper = dart.defineLibrary(_isolate_helper, {});
+var core = dart.lazyImport(core);
+var _native_typed_data = dart.lazyImport(_native_typed_data);
+var _interceptors = dart.import(_interceptors);
+var _js_helper = dart.import(_js_helper);
+var isolate = dart.lazyImport(isolate);
+var _foreign_helper = dart.lazyImport(_foreign_helper);
+var _js_embedded_names = dart.lazyImport(_js_embedded_names);
+var collection = dart.lazyImport(collection);
+var async = dart.lazyImport(async);
+(function(exports, core, _native_typed_data, _interceptors, _js_helper, isolate, _foreign_helper, _js_embedded_names, collection, async) {
'use strict';
// Function _serializeMessage: (dynamic) → dynamic
function _serializeMessage(message) {
@@ -1384,4 +1393,4 @@ var _isolate_helper;
exports.TimerImpl = TimerImpl;
exports.hasTimer = hasTimer;
exports.CapabilityImpl = CapabilityImpl;
-})(_isolate_helper || (_isolate_helper = {}));
+})(_isolate_helper, core, _native_typed_data, _interceptors, _js_helper, isolate, _foreign_helper, _js_embedded_names, collection, async);

Powered by Google App Engine
This is Rietveld 408576698