Chromium Code Reviews| Index: src/runtime.js |
| diff --git a/src/runtime.js b/src/runtime.js |
| index 2cdbbdeebf71d0d023960f4ed3980f7374ea5a5a..66d839bec083ded693b03e7f642c1d241ee9fdab 100644 |
| --- a/src/runtime.js |
| +++ b/src/runtime.js |
| @@ -338,8 +338,8 @@ function SHR(y) { |
| */ |
| // 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); |
| } |