diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-04-23 12:05:36 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-04-23 12:05:36 -0700 |
commit | e72b7b8002c487d32f3a651687acca13f2009b99 (patch) | |
tree | 81a6aacbf385709a83cd095c04ec7ba44bb754bc /deps/v8/src/contexts.h | |
parent | 7a34afba773a09c7862759872905657ec9629351 (diff) | |
download | node-e72b7b8002c487d32f3a651687acca13f2009b99.tar.gz |
Upgrade V8 to 2.2.4.2
Diffstat (limited to 'deps/v8/src/contexts.h')
-rw-r--r-- | deps/v8/src/contexts.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/deps/v8/src/contexts.h b/deps/v8/src/contexts.h index ce112f3e8..ae9bd76d2 100644 --- a/deps/v8/src/contexts.h +++ b/deps/v8/src/contexts.h @@ -83,6 +83,7 @@ enum ContextLookupFlags { V(GET_STACK_TRACE_LINE_INDEX, JSFunction, get_stack_trace_line_fun) \ V(CONFIGURE_GLOBAL_INDEX, JSFunction, configure_global_fun) \ V(FUNCTION_CACHE_INDEX, JSObject, function_cache) \ + V(JSFUNCTION_RESULT_CACHES_INDEX, FixedArray, jsfunction_result_caches) \ 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, \ @@ -205,6 +206,7 @@ class Context: public FixedArray { GET_STACK_TRACE_LINE_INDEX, CONFIGURE_GLOBAL_INDEX, FUNCTION_CACHE_INDEX, + JSFUNCTION_RESULT_CACHES_INDEX, RUNTIME_CONTEXT_INDEX, CALL_AS_FUNCTION_DELEGATE_INDEX, CALL_AS_CONSTRUCTOR_DELEGATE_INDEX, |