Chromium Code Reviews| Index: src/runtime.js |
| =================================================================== |
| --- src/runtime.js (revision 7006) |
| +++ src/runtime.js (working copy) |
| @@ -338,8 +338,8 @@ |
| */ |
| // ECMA-262, section 11.4.1, page 46. |
| -function DELETE(key) { |
| - return %DeleteProperty(%ToObject(this), %ToString(key)); |
| +function DELETE(key, strict) { |
| + return %DeleteProperty(%ToObject(this), %ToString(key), strict); |
| } |