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

Side by Side 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: rebase and format 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 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; 1 var _isolate_helper = dart.defineLibrary(_isolate_helper, {});
2 (function(exports) { 2 var core = dart.import(core);
3 var _native_typed_data = dart.import(_native_typed_data);
4 var _interceptors = dart.lazyImport(_interceptors);
5 var _js_helper = dart.lazyImport(_js_helper);
6 var isolate = dart.import(isolate);
7 var _foreign_helper = dart.import(_foreign_helper);
8 var _js_embedded_names = dart.import(_js_embedded_names);
9 var collection = dart.import(collection);
10 var async = dart.import(async);
11 (function(exports, core, _native_typed_data, _interceptors, _js_helper, isolate, _foreign_helper, _js_embedded_names, collection, async) {
3 'use strict'; 12 'use strict';
4 // Function _serializeMessage: (dynamic) → dynamic 13 // Function _serializeMessage: (dynamic) → dynamic
5 function _serializeMessage(message) { 14 function _serializeMessage(message) {
6 return new _Serializer().serialize(message); 15 return new _Serializer().serialize(message);
7 } 16 }
8 // Function _deserializeMessage: (dynamic) → dynamic 17 // Function _deserializeMessage: (dynamic) → dynamic
9 function _deserializeMessage(message) { 18 function _deserializeMessage(message) {
10 return new _Deserializer().deserialize(message); 19 return new _Deserializer().deserialize(message);
11 } 20 }
12 // Function _clone: (dynamic) → dynamic 21 // Function _clone: (dynamic) → dynamic
(...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after
1377 exports.enterJsAsync = enterJsAsync; 1386 exports.enterJsAsync = enterJsAsync;
1378 exports.leaveJsAsync = leaveJsAsync; 1387 exports.leaveJsAsync = leaveJsAsync;
1379 exports.isWorker = isWorker; 1388 exports.isWorker = isWorker;
1380 exports.startRootIsolate = startRootIsolate; 1389 exports.startRootIsolate = startRootIsolate;
1381 exports.IsolateNatives = IsolateNatives; 1390 exports.IsolateNatives = IsolateNatives;
1382 exports.RawReceivePortImpl = RawReceivePortImpl; 1391 exports.RawReceivePortImpl = RawReceivePortImpl;
1383 exports.ReceivePortImpl = ReceivePortImpl; 1392 exports.ReceivePortImpl = ReceivePortImpl;
1384 exports.TimerImpl = TimerImpl; 1393 exports.TimerImpl = TimerImpl;
1385 exports.hasTimer = hasTimer; 1394 exports.hasTimer = hasTimer;
1386 exports.CapabilityImpl = CapabilityImpl; 1395 exports.CapabilityImpl = CapabilityImpl;
1387 })(_isolate_helper || (_isolate_helper = {})); 1396 })(_isolate_helper, core, _native_typed_data, _interceptors, _js_helper, isolate , _foreign_helper, _js_embedded_names, collection, async);
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