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

Side by Side Diff: lib/runtime/dart/_isolate_helper.js

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 var _isolate_helper = dart.defineLibrary(_isolate_helper, {}); 1 dart.defineLibrary('_isolate_helper');
2 var core = dart.import(core); 2 dart.import('core');
3 var _native_typed_data = dart.import(_native_typed_data); 3 dart.import('_native_typed_data');
4 var _interceptors = dart.lazyImport(_interceptors); 4 dart.lazyImport('_interceptors');
5 var _js_helper = dart.lazyImport(_js_helper); 5 dart.lazyImport('_js_helper');
6 var isolate = dart.import(isolate); 6 dart.import('isolate');
7 var _foreign_helper = dart.import(_foreign_helper); 7 dart.import('_foreign_helper');
8 var _js_embedded_names = dart.import(_js_embedded_names); 8 dart.import('_js_embedded_names');
9 var collection = dart.import(collection); 9 dart.import('collection');
10 var async = dart.import(async); 10 dart.import('async');
11 (function(exports, core, _native_typed_data, _interceptors, _js_helper, isolate, _foreign_helper, _js_embedded_names, collection, async) { 11 (function(exports, core, _native_typed_data, _interceptors, _js_helper, isolate, _foreign_helper, _js_embedded_names, collection, async) {
12 'use strict'; 12 'use strict';
13 function _serializeMessage(message) { 13 function _serializeMessage(message) {
14 return new _Serializer().serialize(message); 14 return new _Serializer().serialize(message);
15 } 15 }
16 dart.fn(_serializeMessage); 16 dart.fn(_serializeMessage);
17 function _deserializeMessage(message) { 17 function _deserializeMessage(message) {
18 return new _Deserializer().deserialize(message); 18 return new _Deserializer().deserialize(message);
19 } 19 }
20 dart.fn(_deserializeMessage); 20 dart.fn(_deserializeMessage);
(...skipping 1536 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 exports.leaveJsAsync = leaveJsAsync; 1557 exports.leaveJsAsync = leaveJsAsync;
1558 exports.isWorker = isWorker; 1558 exports.isWorker = isWorker;
1559 exports.startRootIsolate = startRootIsolate; 1559 exports.startRootIsolate = startRootIsolate;
1560 exports.IsolateNatives = IsolateNatives; 1560 exports.IsolateNatives = IsolateNatives;
1561 exports.RawReceivePortImpl = RawReceivePortImpl; 1561 exports.RawReceivePortImpl = RawReceivePortImpl;
1562 exports.ReceivePortImpl = ReceivePortImpl; 1562 exports.ReceivePortImpl = ReceivePortImpl;
1563 exports.TimerImpl = TimerImpl; 1563 exports.TimerImpl = TimerImpl;
1564 exports.hasTimer = hasTimer; 1564 exports.hasTimer = hasTimer;
1565 exports.CapabilityImpl = CapabilityImpl; 1565 exports.CapabilityImpl = CapabilityImpl;
1566 })(_isolate_helper, core, _native_typed_data, _interceptors, _js_helper, isolate , _foreign_helper, _js_embedded_names, collection, async); 1566 })(_isolate_helper, core, _native_typed_data, _interceptors, _js_helper, isolate , _foreign_helper, _js_embedded_names, collection, async);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698