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

Side by Side Diff: test/codegen/expect/dart/math.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: 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
OLDNEW
1 var math; 1 var math;
2 (function(math) { 2 (function(math) {
3 'use strict'; 3 'use strict';
4 let E = 2.718281828459045; 4 let E = 2.718281828459045;
5 let LN10 = 2.302585092994046; 5 let LN10 = 2.302585092994046;
6 let LN2 = 0.6931471805599453; 6 let LN2 = 0.6931471805599453;
7 let LOG2E = 1.4426950408889634; 7 let LOG2E = 1.4426950408889634;
8 let LOG10E = 0.4342944819032518; 8 let LOG10E = 0.4342944819032518;
9 let PI = 3.141592653589793; 9 let PI = 3.141592653589793;
10 let SQRT1_2 = 0.7071067811865476; 10 let SQRT1_2 = 0.7071067811865476;
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 math.exp = exp; 438 math.exp = exp;
439 math.log = log; 439 math.log = log;
440 math.Point = Point; 440 math.Point = Point;
441 math.Point$ = Point$; 441 math.Point$ = Point$;
442 math.Random = Random; 442 math.Random = Random;
443 math.Rectangle = Rectangle; 443 math.Rectangle = Rectangle;
444 math.Rectangle$ = Rectangle$; 444 math.Rectangle$ = Rectangle$;
445 math.MutableRectangle = MutableRectangle; 445 math.MutableRectangle = MutableRectangle;
446 math.MutableRectangle$ = MutableRectangle$; 446 math.MutableRectangle$ = MutableRectangle$;
447 })(math || (math = {})); 447 })(math || (math = {}));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698