Index: src/interface-descriptors.h |
diff --git a/src/interface-descriptors.h b/src/interface-descriptors.h |
index 3a46114f4bb249e9ac937e31b024bcf838469bcf..458a137e4bc6fdb8286510cda21cf0f67304b347 100644 |
--- a/src/interface-descriptors.h |
+++ b/src/interface-descriptors.h |
@@ -77,6 +77,7 @@ class PlatformInterfaceDescriptor; |
V(Keyed) \ |
V(Named) \ |
V(HasProperty) \ |
+ V(ForInFilter) \ |
V(GetProperty) \ |
V(CallHandler) \ |
V(ArgumentAdaptor) \ |
@@ -530,6 +531,13 @@ class HasPropertyDescriptor final : public CallInterfaceDescriptor { |
DECLARE_DEFAULT_DESCRIPTOR(HasPropertyDescriptor, CallInterfaceDescriptor, 2) |
}; |
+class ForInFilterDescriptor final : public CallInterfaceDescriptor { |
+ public: |
+ enum ParameterIndices { kKeyIndex, kObjectIndex }; |
+ |
+ DECLARE_DEFAULT_DESCRIPTOR(ForInFilterDescriptor, CallInterfaceDescriptor, 2) |
+}; |
+ |
class GetPropertyDescriptor final : public CallInterfaceDescriptor { |
public: |
enum ParameterIndices { kObjectIndex, kKeyIndex }; |