Chromium Code Reviews| Index: src/math.js |
| =================================================================== |
| --- src/math.js (revision 6701) |
| +++ src/math.js (working copy) |
| @@ -201,7 +201,7 @@ |
| %OptimizeObjectForAddingMultipleProperties($Math, 8); |
| %SetProperty($Math, |
| "E", |
| - 2.7182818284590452354, |
| + 2.718281828459045, |
|
Mads Ager (chromium)
2011/02/11 11:06:57
We could keep the extra digits on this one to matc
|
| DONT_ENUM | DONT_DELETE | READ_ONLY); |
| // ECMA-262, section 15.8.1.2. |
| %SetProperty($Math, |
| @@ -220,11 +220,11 @@ |
| DONT_ENUM | DONT_DELETE | READ_ONLY); |
| %SetProperty($Math, |
| "LOG10E", |
| - 0.43429448190325176, |
| + 0.4342944819032518, |
| DONT_ENUM | DONT_DELETE | READ_ONLY); |
| %SetProperty($Math, |
| "PI", |
| - 3.1415926535897932, |
| + 3.141592653589793, |
|
Mads Ager (chromium)
2011/02/11 11:06:57
Ditto.
|
| DONT_ENUM | DONT_DELETE | READ_ONLY); |
| %SetProperty($Math, |
| "SQRT1_2", |