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

Unified Diff: test/codegen/expect/DeltaBlue.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen/expect/BenchmarkBase.js ('k') | test/codegen/expect/cascade.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/DeltaBlue.js
diff --git a/test/codegen/expect/DeltaBlue.js b/test/codegen/expect/DeltaBlue.js
index b1d4d68599afb5b580c1717ed622f78f79a52a7b..64c6154632a1b6b938da7ab555b69affbf15c1f5 100644
--- a/test/codegen/expect/DeltaBlue.js
+++ b/test/codegen/expect/DeltaBlue.js
@@ -1,5 +1,7 @@
-var DeltaBlue;
-(function(exports) {
+var DeltaBlue = dart.defineLibrary(DeltaBlue, {});
+var BenchmarkBase = dart.import(BenchmarkBase);
+var core = dart.import(core);
+(function(exports, BenchmarkBase, core) {
'use strict';
// Function main: () → dynamic
function main() {
@@ -466,4 +468,4 @@ var DeltaBlue;
exports.chainTest = chainTest;
exports.projectionTest = projectionTest;
exports.change = change;
-})(DeltaBlue || (DeltaBlue = {}));
+})(DeltaBlue, BenchmarkBase, core);
« no previous file with comments | « test/codegen/expect/BenchmarkBase.js ('k') | test/codegen/expect/cascade.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698