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

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: Rework with canonical names 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.library('dart/_isolate_helper.js', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core.js',
3 var _native_typed_data = dart.import(_native_typed_data); 3 'dart/_native_typed_data.js',
4 var _interceptors = dart.lazyImport(_interceptors); 4 'dart/isolate.js',
5 var _js_helper = dart.lazyImport(_js_helper); 5 'dart/_foreign_helper.js',
6 var isolate = dart.import(isolate); 6 'dart/_js_embedded_names.js',
7 var _foreign_helper = dart.import(_foreign_helper); 7 'dart/collection.js',
8 var _js_embedded_names = dart.import(_js_embedded_names); 8 'dart/async.js'
9 var collection = dart.import(collection); 9 ], /* Lazy imports */[
10 var async = dart.import(async); 10 'dart/_interceptors.js',
11 (function(exports, core, _native_typed_data, _interceptors, _js_helper, isolate, _foreign_helper, _js_embedded_names, collection, async) { 11 'dart/_js_helper.js'
12 ], function(exports, core, _native_typed_data, isolate, _foreign_helper, _js_emb edded_names, collection, async, _interceptors, _js_helper) {
12 'use strict'; 13 'use strict';
13 function _serializeMessage(message) { 14 function _serializeMessage(message) {
14 return new _Serializer().serialize(message); 15 return new _Serializer().serialize(message);
15 } 16 }
16 dart.fn(_serializeMessage); 17 dart.fn(_serializeMessage);
17 function _deserializeMessage(message) { 18 function _deserializeMessage(message) {
18 return new _Deserializer().deserialize(message); 19 return new _Deserializer().deserialize(message);
19 } 20 }
20 dart.fn(_deserializeMessage); 21 dart.fn(_deserializeMessage);
21 function _clone(message) { 22 function _clone(message) {
(...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1556 exports.enterJsAsync = enterJsAsync; 1557 exports.enterJsAsync = enterJsAsync;
1557 exports.leaveJsAsync = leaveJsAsync; 1558 exports.leaveJsAsync = leaveJsAsync;
1558 exports.isWorker = isWorker; 1559 exports.isWorker = isWorker;
1559 exports.startRootIsolate = startRootIsolate; 1560 exports.startRootIsolate = startRootIsolate;
1560 exports.IsolateNatives = IsolateNatives; 1561 exports.IsolateNatives = IsolateNatives;
1561 exports.RawReceivePortImpl = RawReceivePortImpl; 1562 exports.RawReceivePortImpl = RawReceivePortImpl;
1562 exports.ReceivePortImpl = ReceivePortImpl; 1563 exports.ReceivePortImpl = ReceivePortImpl;
1563 exports.TimerImpl = TimerImpl; 1564 exports.TimerImpl = TimerImpl;
1564 exports.hasTimer = hasTimer; 1565 exports.hasTimer = hasTimer;
1565 exports.CapabilityImpl = CapabilityImpl; 1566 exports.CapabilityImpl = CapabilityImpl;
1566 })(_isolate_helper, core, _native_typed_data, _interceptors, _js_helper, isolate , _foreign_helper, _js_embedded_names, collection, async); 1567 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698