Index: src/macros.py |
diff --git a/src/macros.py b/src/macros.py |
index 93a5563c19ddaa7e0afcea891993afd722c753ba..c3a7888db0eace8534494b7e359147a594b08d1d 100644 |
--- a/src/macros.py |
+++ b/src/macros.py |
@@ -111,7 +111,6 @@ 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 FLOOR(arg) = $floor(arg); |
# Macro for ECMAScript 5 queries of the type: |
# "Type(O) is object." |