| OLD | NEW |
| 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 27 matching lines...) Expand all Loading... |
| 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__ = global.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 = ToNumber(x); | 47 if (!IS_NUMBER(x)) x = ToNumber(x); |
| 48 return %Math_abs(x); | 48 if (x === 0) return 0; // To handle -0. |
| 49 return x > 0 ? x : -x; |
| 49 } | 50 } |
| 50 | 51 |
| 51 // ECMA 262 - 15.8.2.2 | 52 // ECMA 262 - 15.8.2.2 |
| 52 function MathAcos(x) { | 53 function MathAcos(x) { |
| 53 if (!IS_NUMBER(x)) x = ToNumber(x); | 54 if (!IS_NUMBER(x)) x = ToNumber(x); |
| 54 return %Math_acos(x); | 55 return %Math_acos(x); |
| 55 } | 56 } |
| 56 | 57 |
| 57 // ECMA 262 - 15.8.2.3 | 58 // ECMA 262 - 15.8.2.3 |
| 58 function MathAsin(x) { | 59 function MathAsin(x) { |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 "tan", MathTan, | 255 "tan", MathTan, |
| 255 "atan2", MathAtan2, | 256 "atan2", MathAtan2, |
| 256 "pow", MathPow, | 257 "pow", MathPow, |
| 257 "max", MathMax, | 258 "max", MathMax, |
| 258 "min", MathMin | 259 "min", MathMin |
| 259 )); | 260 )); |
| 260 }; | 261 }; |
| 261 | 262 |
| 262 | 263 |
| 263 SetupMath(); | 264 SetupMath(); |
| OLD | NEW |