| Index: src/js/macros.py
|
| diff --git a/src/js/macros.py b/src/js/macros.py
|
| index 101ae338a9d608df9a9220894839944ab2e48ac4..1928411bfd24093cbbaf5483b437a96940578c4c 100644
|
| --- a/src/js/macros.py
|
| +++ b/src/js/macros.py
|
| @@ -125,7 +125,7 @@ macro IS_STRONG(arg) = (%IsStrong(arg));
|
| # This is the same as being either a function or an object in V8 terminology
|
| # (including proxies).
|
| # In addition, an undetectable object is also included by this.
|
| -macro IS_SPEC_OBJECT(arg) = (%_IsSpecObject(arg));
|
| +macro IS_SPEC_OBJECT(arg) = (%_IsJSReceiver(arg));
|
|
|
| # Macro for ECMAScript 5 queries of the type:
|
| # "IsCallable(O)"
|
|
|