Index: src/runtime.h |
diff --git a/src/runtime.h b/src/runtime.h |
index 95fb41956f79adce6806753aab0efb95b715c571..6caaf02df083fc9bd45f83124308a2ebe431ab92 100644 |
--- a/src/runtime.h |
+++ b/src/runtime.h |
@@ -58,7 +58,7 @@ namespace internal { |
F(GetLocalPropertyNames, 2, 1) \ |
F(GetLocalElementNames, 1, 1) \ |
F(GetInterceptorInfo, 1, 1) \ |
- F(GetNamedInterceptorPropertyNames, 1, 1) \ |
+ F(GetNamedInterceptorPropertyNames, 2, 1) \ |
F(GetIndexedInterceptorElementNames, 1, 1) \ |
F(GetArgumentsProperty, 1, 1) \ |
F(ToFastProperties, 1, 1) \ |
@@ -854,6 +854,11 @@ class Runtime : public AllStatic { |
Isolate* isolate, |
Handle<FixedArray> literals, |
Handle<FixedArray> elements); |
+ |
+ enum LocalPropertyKeyType { |
+ PROPERTY_KEY_STRING = 1, |
+ PROPERTY_KEY_SYMBOL = 2 |
+ }; |
}; |