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

Unified 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, 10 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/isolate/isolate.js
diff --git a/test/codegen/expect/isolate/isolate.js b/test/codegen/expect/isolate/isolate.js
index facbfa45d1aa9cbeee556948475823763941d462..814ba242e6444b55c532e17a0da4aae5c1b9049c 100644
--- a/test/codegen/expect/isolate/isolate.js
+++ b/test/codegen/expect/isolate/isolate.js
@@ -1,5 +1,5 @@
var isolate;
-(function(isolate) {
+(function(exports) {
'use strict';
class IsolateSpawnException extends dart.Object {
IsolateSpawnException(message) {
@@ -198,11 +198,11 @@ var isolate;
}
}
// Exports:
- isolate.IsolateSpawnException = IsolateSpawnException;
- isolate.Isolate = Isolate;
- isolate.SendPort = SendPort;
- isolate.ReceivePort = ReceivePort;
- isolate.RawReceivePort = RawReceivePort;
- isolate.RemoteError = RemoteError;
- isolate.Capability = Capability;
+ exports.IsolateSpawnException = IsolateSpawnException;
+ exports.Isolate = Isolate;
+ exports.SendPort = SendPort;
+ exports.ReceivePort = ReceivePort;
+ exports.RawReceivePort = RawReceivePort;
+ exports.RemoteError = RemoteError;
+ exports.Capability = Capability;
})(isolate || (isolate = {}));
« 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