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

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

Issue 1170813008: fixes detection of SDK libraries (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: format 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 dart.library('dart/_isolate_helper', null, /* Imports */[ 1 dart.library('dart/_isolate_helper', null, /* Imports */[
2 'dart/core', 2 'dart/core',
3 'dart/_native_typed_data',
4 'dart/_interceptors', 3 'dart/_interceptors',
5 'dart/_js_helper', 4 'dart/_js_helper',
6 'dart/isolate', 5 'dart/isolate',
7 'dart/_foreign_helper', 6 'dart/_foreign_helper',
8 'dart/_js_embedded_names',
9 'dart/collection', 7 'dart/collection',
10 'dart/async' 8 'dart/async'
11 ], /* Lazy imports */[ 9 ], /* Lazy imports */[
12 ], function(exports, core, _native_typed_data, _interceptors, _js_helper, isolat e, _foreign_helper, _js_embedded_names, collection, async) { 10 'dart/_native_typed_data',
11 'dart/_js_embedded_names'
12 ], function(exports, core, _interceptors, _js_helper, isolate, _foreign_helper, collection, async, _native_typed_data, _js_embedded_names) {
13 'use strict'; 13 'use strict';
14 function _serializeMessage(message) { 14 function _serializeMessage(message) {
15 return new _Serializer().serialize(message); 15 return new _Serializer().serialize(message);
16 } 16 }
17 dart.fn(_serializeMessage); 17 dart.fn(_serializeMessage);
18 function _deserializeMessage(message) { 18 function _deserializeMessage(message) {
19 return new _Deserializer().deserialize(message); 19 return new _Deserializer().deserialize(message);
20 } 20 }
21 dart.fn(_deserializeMessage); 21 dart.fn(_deserializeMessage);
22 function _clone(message) { 22 function _clone(message) {
(...skipping 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after
1552 exports.leaveJsAsync = leaveJsAsync; 1552 exports.leaveJsAsync = leaveJsAsync;
1553 exports.isWorker = isWorker; 1553 exports.isWorker = isWorker;
1554 exports.startRootIsolate = startRootIsolate; 1554 exports.startRootIsolate = startRootIsolate;
1555 exports.IsolateNatives = IsolateNatives; 1555 exports.IsolateNatives = IsolateNatives;
1556 exports.RawReceivePortImpl = RawReceivePortImpl; 1556 exports.RawReceivePortImpl = RawReceivePortImpl;
1557 exports.ReceivePortImpl = ReceivePortImpl; 1557 exports.ReceivePortImpl = ReceivePortImpl;
1558 exports.TimerImpl = TimerImpl; 1558 exports.TimerImpl = TimerImpl;
1559 exports.hasTimer = hasTimer; 1559 exports.hasTimer = hasTimer;
1560 exports.CapabilityImpl = CapabilityImpl; 1560 exports.CapabilityImpl = CapabilityImpl;
1561 }); 1561 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698