| Index: src/math.js
|
| ===================================================================
|
| --- src/math.js (revision 3935)
|
| +++ src/math.js (working copy)
|
| @@ -84,7 +84,7 @@
|
| // ECMA 262 - 15.8.2.7
|
| function MathCos(x) {
|
| if (!IS_NUMBER(x)) x = ToNumber(x);
|
| - return %Math_cos(x);
|
| + return %_Math_cos(x);
|
| }
|
|
|
| // ECMA 262 - 15.8.2.8
|
| @@ -176,7 +176,7 @@
|
| // ECMA 262 - 15.8.2.16
|
| function MathSin(x) {
|
| if (!IS_NUMBER(x)) x = ToNumber(x);
|
| - return %Math_sin(x);
|
| + return %_Math_sin(x);
|
| }
|
|
|
| // ECMA 262 - 15.8.2.17
|
| @@ -233,7 +233,7 @@
|
| "SQRT2",
|
| 1.4142135623730951,
|
| DONT_ENUM | DONT_DELETE | READ_ONLY);
|
| - %TransformToFastProperties($Math);
|
| + %ToFastProperties($Math);
|
|
|
| // Setup non-enumerable functions of the Math object and
|
| // set their names.
|
|
|