Chromium Code Reviews| Index: src/runtime.js |
| =================================================================== |
| --- src/runtime.js (revision 16038) |
| +++ src/runtime.js (working copy) |
| @@ -294,13 +294,6 @@ |
| } |
| -// ECMA-262, section 11.4.8, page 48. |
| -function BIT_NOT() { |
| - var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this); |
| - return %NumberNot(x); |
| -} |
| - |
| - |
| // ECMA-262, section 11.7.1, page 51. |
| function SHL(y) { |
| var x = IS_NUMBER(this) ? this : %NonNumberToNumber(this); |