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

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: Address comments 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
« no previous file with comments | « lib/runtime/dart/_internal.js ('k') | lib/runtime/dart/_js_embedded_names.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var _isolate_helper = dart.defineLibrary(_isolate_helper, {}); 1 dart.library('dart/_isolate_helper', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core',
3 var _native_typed_data = dart.import(_native_typed_data); 3 'dart/_native_typed_data',
4 var _interceptors = dart.import(_interceptors); 4 'dart/_interceptors',
5 var _js_helper = dart.import(_js_helper); 5 'dart/_js_helper',
6 var isolate = dart.import(isolate); 6 'dart/isolate',
7 var _foreign_helper = dart.import(_foreign_helper); 7 'dart/_foreign_helper',
8 var _js_embedded_names = dart.import(_js_embedded_names); 8 'dart/_js_embedded_names',
9 var collection = dart.import(collection); 9 'dart/collection',
10 var async = dart.import(async); 10 'dart/async'
11 (function(exports, core, _native_typed_data, _interceptors, _js_helper, isolate, _foreign_helper, _js_embedded_names, collection, async) { 11 ], /* Lazy imports */[
12 ], function(exports, core, _native_typed_data, _interceptors, _js_helper, isolat e, _foreign_helper, _js_embedded_names, collection, async) {
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 1528 matching lines...) Expand 10 before | Expand all | Expand 10 after
1550 exports.enterJsAsync = enterJsAsync; 1551 exports.enterJsAsync = enterJsAsync;
1551 exports.leaveJsAsync = leaveJsAsync; 1552 exports.leaveJsAsync = leaveJsAsync;
1552 exports.isWorker = isWorker; 1553 exports.isWorker = isWorker;
1553 exports.startRootIsolate = startRootIsolate; 1554 exports.startRootIsolate = startRootIsolate;
1554 exports.IsolateNatives = IsolateNatives; 1555 exports.IsolateNatives = IsolateNatives;
1555 exports.RawReceivePortImpl = RawReceivePortImpl; 1556 exports.RawReceivePortImpl = RawReceivePortImpl;
1556 exports.ReceivePortImpl = ReceivePortImpl; 1557 exports.ReceivePortImpl = ReceivePortImpl;
1557 exports.TimerImpl = TimerImpl; 1558 exports.TimerImpl = TimerImpl;
1558 exports.hasTimer = hasTimer; 1559 exports.hasTimer = hasTimer;
1559 exports.CapabilityImpl = CapabilityImpl; 1560 exports.CapabilityImpl = CapabilityImpl;
1560 })(_isolate_helper, core, _native_typed_data, _interceptors, _js_helper, isolate , _foreign_helper, _js_embedded_names, collection, async); 1561 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_internal.js ('k') | lib/runtime/dart/_js_embedded_names.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698