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

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: 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
OLDNEW
1 var DeltaBlue = dart.defineLibrary(DeltaBlue, {}); 1 dart.defineLibrary('DeltaBlue');
2 var BenchmarkBase = dart.import(BenchmarkBase); 2 dart.import('BenchmarkBase');
3 var core = dart.import(core); 3 dart.import('core');
4 (function(exports, BenchmarkBase, core) { 4 (function(exports, BenchmarkBase, core) {
5 'use strict'; 5 'use strict';
6 function main() { 6 function main() {
7 new DeltaBlue().report(); 7 new DeltaBlue().report();
8 } 8 }
9 dart.fn(main); 9 dart.fn(main);
10 class DeltaBlue extends BenchmarkBase.BenchmarkBase { 10 class DeltaBlue extends BenchmarkBase.BenchmarkBase {
11 DeltaBlue() { 11 DeltaBlue() {
12 super.BenchmarkBase("DeltaBlue"); 12 super.BenchmarkBase("DeltaBlue");
13 } 13 }
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 exports.BinaryConstraint = BinaryConstraint; 556 exports.BinaryConstraint = BinaryConstraint;
557 exports.ScaleConstraint = ScaleConstraint; 557 exports.ScaleConstraint = ScaleConstraint;
558 exports.EqualityConstraint = EqualityConstraint; 558 exports.EqualityConstraint = EqualityConstraint;
559 exports.Variable = Variable; 559 exports.Variable = Variable;
560 exports.Planner = Planner; 560 exports.Planner = Planner;
561 exports.Plan = Plan; 561 exports.Plan = Plan;
562 exports.chainTest = chainTest; 562 exports.chainTest = chainTest;
563 exports.projectionTest = projectionTest; 563 exports.projectionTest = projectionTest;
564 exports.change = change; 564 exports.change = change;
565 })(DeltaBlue, BenchmarkBase, core); 565 })(DeltaBlue, BenchmarkBase, core);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698