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

Side by Side Diff: test/codegen/expect/dart/isolate.js

Issue 968273002: Fixing layout in js output (use full paths rather than just the library name) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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;
2 (function(isolate) { 2 (function(isolate) {
3 'use strict'; 3 'use strict';
4 class IsolateSpawnException extends dart.Object { 4 class IsolateSpawnException extends dart.Object {
5 IsolateSpawnException(message) { 5 IsolateSpawnException(message) {
6 this.message = message; 6 this.message = message;
7 } 7 }
8 toString() { 8 toString() {
9 return `IsolateSpawnException: ${this.message}`; 9 return `IsolateSpawnException: ${this.message}`;
10 } 10 }
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 } 199 }
200 // Exports: 200 // Exports:
201 isolate.IsolateSpawnException = IsolateSpawnException; 201 isolate.IsolateSpawnException = IsolateSpawnException;
202 isolate.Isolate = Isolate; 202 isolate.Isolate = Isolate;
203 isolate.SendPort = SendPort; 203 isolate.SendPort = SendPort;
204 isolate.ReceivePort = ReceivePort; 204 isolate.ReceivePort = ReceivePort;
205 isolate.RawReceivePort = RawReceivePort; 205 isolate.RawReceivePort = RawReceivePort;
206 isolate.RemoteError = RemoteError; 206 isolate.RemoteError = RemoteError;
207 isolate.Capability = Capability; 207 isolate.Capability = Capability;
208 })(isolate || (isolate = {})); 208 })(isolate || (isolate = {}));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698