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

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: fix core.Symbol reference 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
OLDNEW
1 var _isolate_helper; 1 var _isolate_helper, core, _native_typed_data, _interceptors, _js_helper, isolat e, _foreign_helper, _js_embedded_names, collection, async;
2 (function(exports) { 2 (function(exports, core, _native_typed_data, _interceptors, _js_helper, isolate, _foreign_helper, _js_embedded_names, collection, async) {
3 'use strict'; 3 'use strict';
4 // Function _serializeMessage: (dynamic) → dynamic 4 // Function _serializeMessage: (dynamic) → dynamic
5 function _serializeMessage(message) { 5 function _serializeMessage(message) {
6 return new _Serializer().serialize(message); 6 return new _Serializer().serialize(message);
7 } 7 }
8 // Function _deserializeMessage: (dynamic) → dynamic 8 // Function _deserializeMessage: (dynamic) → dynamic
9 function _deserializeMessage(message) { 9 function _deserializeMessage(message) {
10 return new _Deserializer().deserialize(message); 10 return new _Deserializer().deserialize(message);
11 } 11 }
12 // Function _clone: (dynamic) → dynamic 12 // Function _clone: (dynamic) → dynamic
(...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after
1377 exports.enterJsAsync = enterJsAsync; 1377 exports.enterJsAsync = enterJsAsync;
1378 exports.leaveJsAsync = leaveJsAsync; 1378 exports.leaveJsAsync = leaveJsAsync;
1379 exports.isWorker = isWorker; 1379 exports.isWorker = isWorker;
1380 exports.startRootIsolate = startRootIsolate; 1380 exports.startRootIsolate = startRootIsolate;
1381 exports.IsolateNatives = IsolateNatives; 1381 exports.IsolateNatives = IsolateNatives;
1382 exports.RawReceivePortImpl = RawReceivePortImpl; 1382 exports.RawReceivePortImpl = RawReceivePortImpl;
1383 exports.ReceivePortImpl = ReceivePortImpl; 1383 exports.ReceivePortImpl = ReceivePortImpl;
1384 exports.TimerImpl = TimerImpl; 1384 exports.TimerImpl = TimerImpl;
1385 exports.hasTimer = hasTimer; 1385 exports.hasTimer = hasTimer;
1386 exports.CapabilityImpl = CapabilityImpl; 1386 exports.CapabilityImpl = CapabilityImpl;
1387 })(_isolate_helper || (_isolate_helper = {})); 1387 })(_isolate_helper || (_isolate_helper = {}), core, _native_typed_data, _interce ptors || (_interceptors = {}), _js_helper || (_js_helper = {}), isolate, _foreig n_helper, _js_embedded_names, collection, async);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698