Chromium Code Reviews| Index: src/runtime.js |
| diff --git a/src/runtime.js b/src/runtime.js |
| index c9cf825038a95ab642808b5ea027553e3b514b35..c868309028064811e61edb5e15ac161a07287a88 100644 |
| --- a/src/runtime.js |
| +++ b/src/runtime.js |
| @@ -468,6 +468,12 @@ function TO_STRING() { |
| } |
| +// Convert the receiver to a string or symbol - forward to ToName. |
| +function TO_NAME() { |
| + return %ToName(this); |
| +} |
| + |
| + |
| /* ------------------------------------- |
| - - - C o n v e r s i o n s - - - |
| ------------------------------------- |