| Index: src/macros.py
|
| ===================================================================
|
| --- src/macros.py (revision 7948)
|
| +++ src/macros.py (working copy)
|
| @@ -127,8 +127,8 @@
|
| macro TO_UINT32(arg) = (arg >>> 0);
|
| macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
|
| macro TO_NUMBER_INLINE(arg) = (IS_NUMBER(%IS_VAR(arg)) ? arg : NonNumberToNumber(arg));
|
| +macro TO_OBJECT_INLINE(arg) = (IS_SPEC_OBJECT(%IS_VAR(arg)) ? arg : ToObject(arg));
|
|
|
| -
|
| # Macros implemented in Python.
|
| python macro CHAR_CODE(str) = ord(str[1]);
|
|
|
|
|