diff options
Diffstat (limited to 'deps/v8/src/contexts.h')
-rw-r--r-- | deps/v8/src/contexts.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/deps/v8/src/contexts.h b/deps/v8/src/contexts.h index f56143175e..bdfc40b040 100644 --- a/deps/v8/src/contexts.h +++ b/deps/v8/src/contexts.h @@ -28,7 +28,8 @@ #ifndef V8_CONTEXTS_H_ #define V8_CONTEXTS_H_ -namespace v8 { namespace internal { +namespace v8 { +namespace internal { enum ContextLookupFlags { @@ -90,6 +91,8 @@ enum ContextLookupFlags { V(FUNCTION_CACHE_INDEX, JSObject, function_cache) \ V(RUNTIME_CONTEXT_INDEX, Context, runtime_context) \ V(CALL_AS_FUNCTION_DELEGATE_INDEX, JSFunction, call_as_function_delegate) \ + V(CALL_AS_CONSTRUCTOR_DELEGATE_INDEX, JSFunction, \ + call_as_constructor_delegate) \ V(EMPTY_SCRIPT_INDEX, Script, empty_script) \ V(SCRIPT_FUNCTION_INDEX, JSFunction, script_function) \ V(CONTEXT_EXTENSION_FUNCTION_INDEX, JSFunction, context_extension_function) \ @@ -209,6 +212,7 @@ class Context: public FixedArray { FUNCTION_CACHE_INDEX, RUNTIME_CONTEXT_INDEX, CALL_AS_FUNCTION_DELEGATE_INDEX, + CALL_AS_CONSTRUCTOR_DELEGATE_INDEX, EMPTY_SCRIPT_INDEX, SCRIPT_FUNCTION_INDEX, CONTEXT_EXTENSION_FUNCTION_INDEX, |