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

Side by Side Diff: src/math.js

Issue 7828003: Cleanup of messages.js. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addres review comments Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/messages.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 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 20 matching lines...) Expand all
31 // changes to these properties. 31 // changes to these properties.
32 const $floor = MathFloor; 32 const $floor = MathFloor;
33 const $random = MathRandom; 33 const $random = MathRandom;
34 const $abs = MathAbs; 34 const $abs = MathAbs;
35 35
36 // Instance class name can only be set on functions. That is the only 36 // Instance class name can only be set on functions. That is the only
37 // purpose for MathConstructor. 37 // purpose for MathConstructor.
38 function MathConstructor() {} 38 function MathConstructor() {}
39 %FunctionSetInstanceClassName(MathConstructor, 'Math'); 39 %FunctionSetInstanceClassName(MathConstructor, 'Math');
40 const $Math = new MathConstructor(); 40 const $Math = new MathConstructor();
41 $Math.__proto__ = global.Object.prototype; 41 $Math.__proto__ = $Object.prototype;
42 %SetProperty(global, "Math", $Math, DONT_ENUM); 42 %SetProperty(global, "Math", $Math, DONT_ENUM);
43 43
44 // ECMA 262 - 15.8.2.1 44 // ECMA 262 - 15.8.2.1
45 function MathAbs(x) { 45 function MathAbs(x) {
46 if (%_IsSmi(x)) return x >= 0 ? x : -x; 46 if (%_IsSmi(x)) return x >= 0 ? x : -x;
47 if (!IS_NUMBER(x)) x = NonNumberToNumber(x); 47 if (!IS_NUMBER(x)) x = NonNumberToNumber(x);
48 if (x === 0) return 0; // To handle -0. 48 if (x === 0) return 0; // To handle -0.
49 return x > 0 ? x : -x; 49 return x > 0 ? x : -x;
50 } 50 }
51 51
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 "tan", MathTan, 255 "tan", MathTan,
256 "atan2", MathAtan2, 256 "atan2", MathAtan2,
257 "pow", MathPow, 257 "pow", MathPow,
258 "max", MathMax, 258 "max", MathMax,
259 "min", MathMin 259 "min", MathMin
260 )); 260 ));
261 }; 261 };
262 262
263 263
264 SetupMath(); 264 SetupMath();
OLDNEW
« no previous file with comments | « no previous file | src/messages.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698