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

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

Issue 968273002: Fixing layout in js output (use full paths rather than just the library name) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: address review comments Created 5 years, 9 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/methods/methods.js ('k') | test/codegen/expect/sunflower/sunflower.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 sunflower; 1 var sunflower;
2 (function(exports) { 2 (function(exports) {
3 'use strict'; 3 'use strict';
4 let ORANGE = "orange"; 4 let ORANGE = "orange";
5 let SEED_RADIUS = 2; 5 let SEED_RADIUS = 2;
6 let SCALE_FACTOR = 4; 6 let SCALE_FACTOR = 4;
7 let TAU = math.PI * 2; 7 let TAU = math.PI * 2;
8 let MAX_D = 300; 8 let MAX_D = 300;
9 let centerX = MAX_D / 2; 9 let centerX = MAX_D / 2;
10 let centerY = centerX; 10 let centerY = centerX;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 exports.MAX_D = MAX_D; 84 exports.MAX_D = MAX_D;
85 exports.centerX = centerX; 85 exports.centerX = centerX;
86 exports.centerY = centerY; 86 exports.centerY = centerY;
87 exports.querySelector = querySelector; 87 exports.querySelector = querySelector;
88 exports.Circle = Circle; 88 exports.Circle = Circle;
89 exports.CirclePainter = CirclePainter; 89 exports.CirclePainter = CirclePainter;
90 exports.SunflowerSeed = SunflowerSeed; 90 exports.SunflowerSeed = SunflowerSeed;
91 exports.main = main; 91 exports.main = main;
92 exports.draw = draw; 92 exports.draw = draw;
93 })(sunflower || (sunflower = {})); 93 })(sunflower || (sunflower = {}));
OLDNEW
« no previous file with comments | « test/codegen/expect/methods/methods.js ('k') | test/codegen/expect/sunflower/sunflower.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698