Index: src/macros.py |
diff --git a/src/macros.py b/src/macros.py |
index 9fd5442758f53ca3cadeae7688b0216750b80419..9c166f6a71696d68f50baeb81289a1720605202c 100644 |
--- a/src/macros.py |
+++ b/src/macros.py |
@@ -116,6 +116,7 @@ macro IS_GENERATOR(arg) = (%_ClassOf(arg) === 'Generator'); |
macro IS_SET_ITERATOR(arg) = (%_ClassOf(arg) === 'Set Iterator'); |
macro IS_MAP_ITERATOR(arg) = (%_ClassOf(arg) === 'Map Iterator'); |
macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg)); |
+macro IS_STRONG(arg) = (%IsStrong(arg)); |
# Macro for ECMAScript 5 queries of the type: |
# "Type(O) is object." |