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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « test/codegen/expect/BenchmarkBase.js ('k') | test/codegen/expect/cascade.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 DeltaBlue; 1 var DeltaBlue = dart.defineLibrary(DeltaBlue, {});
2 (function(exports) { 2 var BenchmarkBase = dart.import(BenchmarkBase);
3 var core = dart.import(core);
4 (function(exports, BenchmarkBase, core) {
3 'use strict'; 5 'use strict';
4 // Function main: () → dynamic 6 // Function main: () → dynamic
5 function main() { 7 function main() {
6 new DeltaBlue().report(); 8 new DeltaBlue().report();
7 } 9 }
8 class DeltaBlue extends BenchmarkBase.BenchmarkBase { 10 class DeltaBlue extends BenchmarkBase.BenchmarkBase {
9 DeltaBlue() { 11 DeltaBlue() {
10 super.BenchmarkBase("DeltaBlue"); 12 super.BenchmarkBase("DeltaBlue");
11 } 13 }
12 run() { 14 run() {
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 exports.BACKWARD = BACKWARD; 461 exports.BACKWARD = BACKWARD;
460 exports.BinaryConstraint = BinaryConstraint; 462 exports.BinaryConstraint = BinaryConstraint;
461 exports.ScaleConstraint = ScaleConstraint; 463 exports.ScaleConstraint = ScaleConstraint;
462 exports.EqualityConstraint = EqualityConstraint; 464 exports.EqualityConstraint = EqualityConstraint;
463 exports.Variable = Variable; 465 exports.Variable = Variable;
464 exports.Planner = Planner; 466 exports.Planner = Planner;
465 exports.Plan = Plan; 467 exports.Plan = Plan;
466 exports.chainTest = chainTest; 468 exports.chainTest = chainTest;
467 exports.projectionTest = projectionTest; 469 exports.projectionTest = projectionTest;
468 exports.change = change; 470 exports.change = change;
469 })(DeltaBlue || (DeltaBlue = {})); 471 })(DeltaBlue, BenchmarkBase, core);
OLDNEW
« 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