Chromium Code Reviews| Index: src/runtime.js |
| diff --git a/src/runtime.js b/src/runtime.js |
| index ed7cd0b8a2008ca5d06a5cb24d5dd65dd2073f0d..fa71432883a8c7d883741db0f26f58e356158c84 100644 |
| --- a/src/runtime.js |
| +++ b/src/runtime.js |
| @@ -509,7 +509,7 @@ SHR_STRONG = function SHR_STRONG(y) { |
| // ECMA-262, section 11.4.1, page 46. |
| DELETE = function DELETE(key, language_mode) { |
| - return %DeleteProperty(%$toObject(this), %$toName(key), language_mode); |
| + return %DeleteProperty(%$toObject(this), key, language_mode); |
| } |