Chromium Code Reviews| Index: src/runtime.js |
| diff --git a/src/runtime.js b/src/runtime.js |
| index 6bbb375e767681e5b6f238a096fee76cd2921236..7d82dfa8463fac3305ca98f42dd9a5545444a40c 100644 |
| --- a/src/runtime.js |
| +++ b/src/runtime.js |
| @@ -312,8 +312,8 @@ function SHR(y) { |
| */ |
| // ECMA-262, section 11.4.1, page 46. |
| -function DELETE(key, strict) { |
| - return %DeleteProperty(%ToObject(this), %ToName(key), strict); |
| +function DELETE(key, language_mode) { |
| + return %DeleteProperty(%ToObject(this), %ToName(key), language_mode); |
| } |