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

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: 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/core.js ('k') | lib/runtime/dart/math.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; 1 var isolate = dart.defineLibrary(isolate, {});
2 (function(exports) { 2 var core = dart.import(core);
3 var _isolate_helper = dart.lazyImport(_isolate_helper);
4 var async = dart.import(async);
5 (function(exports, core, _isolate_helper, async) {
3 'use strict'; 6 'use strict';
4 class Capability extends core.Object { 7 class Capability extends core.Object {
5 Capability() { 8 Capability() {
6 return new _isolate_helper.CapabilityImpl(); 9 return new _isolate_helper.CapabilityImpl();
7 } 10 }
8 } 11 }
9 class IsolateSpawnException extends core.Object { 12 class IsolateSpawnException extends core.Object {
10 IsolateSpawnException(message) { 13 IsolateSpawnException(message) {
11 this.message = message; 14 this.message = message;
12 } 15 }
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 } 213 }
211 _RemoteStackTrace[dart.implements] = () => [core.StackTrace]; 214 _RemoteStackTrace[dart.implements] = () => [core.StackTrace];
212 // Exports: 215 // Exports:
213 exports.Capability = Capability; 216 exports.Capability = Capability;
214 exports.IsolateSpawnException = IsolateSpawnException; 217 exports.IsolateSpawnException = IsolateSpawnException;
215 exports.Isolate = Isolate; 218 exports.Isolate = Isolate;
216 exports.SendPort = SendPort; 219 exports.SendPort = SendPort;
217 exports.ReceivePort = ReceivePort; 220 exports.ReceivePort = ReceivePort;
218 exports.RawReceivePort = RawReceivePort; 221 exports.RawReceivePort = RawReceivePort;
219 exports.RemoteError = RemoteError; 222 exports.RemoteError = RemoteError;
220 })(isolate || (isolate = {})); 223 })(isolate, core, _isolate_helper, async);
OLDNEW
« no previous file with comments | « lib/runtime/dart/core.js ('k') | lib/runtime/dart/math.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698