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

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

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments Created 5 years, 6 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 = dart.defineLibrary(DeltaBlue, {}); 1 dart.library('DeltaBlue', null, /* Imports */[
2 var BenchmarkBase = dart.import(BenchmarkBase); 2 'BenchmarkBase',
3 var core = dart.import(core); 3 'dart/core'
4 (function(exports, BenchmarkBase, core) { 4 ], /* Lazy imports */[
5 ], function(exports, BenchmarkBase, core) {
5 'use strict'; 6 'use strict';
6 function main() { 7 function main() {
7 new DeltaBlue().report(); 8 new DeltaBlue().report();
8 } 9 }
9 dart.fn(main); 10 dart.fn(main);
10 class DeltaBlue extends BenchmarkBase.BenchmarkBase { 11 class DeltaBlue extends BenchmarkBase.BenchmarkBase {
11 DeltaBlue() { 12 DeltaBlue() {
12 super.BenchmarkBase("DeltaBlue"); 13 super.BenchmarkBase("DeltaBlue");
13 } 14 }
14 run() { 15 run() {
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 exports.BACKWARD = BACKWARD; 556 exports.BACKWARD = BACKWARD;
556 exports.BinaryConstraint = BinaryConstraint; 557 exports.BinaryConstraint = BinaryConstraint;
557 exports.ScaleConstraint = ScaleConstraint; 558 exports.ScaleConstraint = ScaleConstraint;
558 exports.EqualityConstraint = EqualityConstraint; 559 exports.EqualityConstraint = EqualityConstraint;
559 exports.Variable = Variable; 560 exports.Variable = Variable;
560 exports.Planner = Planner; 561 exports.Planner = Planner;
561 exports.Plan = Plan; 562 exports.Plan = Plan;
562 exports.chainTest = chainTest; 563 exports.chainTest = chainTest;
563 exports.projectionTest = projectionTest; 564 exports.projectionTest = projectionTest;
564 exports.change = change; 565 exports.change = change;
565 })(DeltaBlue, BenchmarkBase, core); 566 });
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