| Index: src/runtime.js
|
| diff --git a/src/runtime.js b/src/runtime.js
|
| index 90fb36b42231c810cf0e74b7684a65f71dbe4e96..f1b4585d3bbd111ccd4ef777dc96ae7b0f8bc21b 100644
|
| --- a/src/runtime.js
|
| +++ b/src/runtime.js
|
| @@ -294,13 +294,6 @@ function BIT_XOR(y) {
|
| }
|
|
|
|
|
| -// ECMA-262, section 11.4.7, page 47.
|
| -function UNARY_MINUS() {
|
| - var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
|
| - return %NumberUnaryMinus(x);
|
| -}
|
| -
|
| -
|
| // ECMA-262, section 11.4.8, page 48.
|
| function BIT_NOT() {
|
| var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this);
|
|
|