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

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

Issue 967713002: fixes #69, avoid module name inside module scope (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
« no previous file with comments | « test/codegen/expect/html_input_e/html_input_e.js ('k') | test/codegen/expect/math/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;
2 (function(isolate) { 2 (function(exports) {
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 }
11 } 11 }
12 class Isolate extends dart.Object { 12 class Isolate extends dart.Object {
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 toString() { 191 toString() {
192 return this._trace; 192 return this._trace;
193 } 193 }
194 } 194 }
195 class Capability extends dart.Object { 195 class Capability extends dart.Object {
196 Capability() { 196 Capability() {
197 return new _isolate_helper.CapabilityImpl(); 197 return new _isolate_helper.CapabilityImpl();
198 } 198 }
199 } 199 }
200 // Exports: 200 // Exports:
201 isolate.IsolateSpawnException = IsolateSpawnException; 201 exports.IsolateSpawnException = IsolateSpawnException;
202 isolate.Isolate = Isolate; 202 exports.Isolate = Isolate;
203 isolate.SendPort = SendPort; 203 exports.SendPort = SendPort;
204 isolate.ReceivePort = ReceivePort; 204 exports.ReceivePort = ReceivePort;
205 isolate.RawReceivePort = RawReceivePort; 205 exports.RawReceivePort = RawReceivePort;
206 isolate.RemoteError = RemoteError; 206 exports.RemoteError = RemoteError;
207 isolate.Capability = Capability; 207 exports.Capability = Capability;
208 })(isolate || (isolate = {})); 208 })(isolate || (isolate = {}));
OLDNEW
« no previous file with comments | « test/codegen/expect/html_input_e/html_input_e.js ('k') | test/codegen/expect/math/math.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698