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

Side by Side Diff: lib/runtime/dart/isolate.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; 1 var isolate, core, _isolate_helper, async;
2 (function(exports) { 2 (function(exports, core, _isolate_helper, async) {
3 'use strict'; 3 'use strict';
4 class Capability extends core.Object { 4 class Capability extends core.Object {
5 Capability() { 5 Capability() {
6 return new _isolate_helper.CapabilityImpl(); 6 return new _isolate_helper.CapabilityImpl();
7 } 7 }
8 } 8 }
9 class IsolateSpawnException extends core.Object { 9 class IsolateSpawnException extends core.Object {
10 IsolateSpawnException(message) { 10 IsolateSpawnException(message) {
11 this.message = message; 11 this.message = message;
12 } 12 }
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 } 210 }
211 _RemoteStackTrace[dart.implements] = () => [core.StackTrace]; 211 _RemoteStackTrace[dart.implements] = () => [core.StackTrace];
212 // Exports: 212 // Exports:
213 exports.Capability = Capability; 213 exports.Capability = Capability;
214 exports.IsolateSpawnException = IsolateSpawnException; 214 exports.IsolateSpawnException = IsolateSpawnException;
215 exports.Isolate = Isolate; 215 exports.Isolate = Isolate;
216 exports.SendPort = SendPort; 216 exports.SendPort = SendPort;
217 exports.ReceivePort = ReceivePort; 217 exports.ReceivePort = ReceivePort;
218 exports.RawReceivePort = RawReceivePort; 218 exports.RawReceivePort = RawReceivePort;
219 exports.RemoteError = RemoteError; 219 exports.RemoteError = RemoteError;
220 })(isolate || (isolate = {})); 220 })(isolate || (isolate = {}), core, _isolate_helper || (_isolate_helper = {}), a sync);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698