diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2009-10-29 16:11:05 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-10-29 16:11:05 +0100 |
commit | 6959a1d6d16164f40bbeb5f65faaf17028932054 (patch) | |
tree | baf48aef8f45436673e08d7b5fa0136b859fdc83 /deps/v8/src/handles.h | |
parent | 659954d842acad282cf03850e09c702da0d0f381 (diff) | |
download | node-new-6959a1d6d16164f40bbeb5f65faaf17028932054.tar.gz |
Upgrade v8 to 1.3.18
Diffstat (limited to 'deps/v8/src/handles.h')
-rw-r--r-- | deps/v8/src/handles.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/deps/v8/src/handles.h b/deps/v8/src/handles.h index d3e9b788b5..5d574657c5 100644 --- a/deps/v8/src/handles.h +++ b/deps/v8/src/handles.h @@ -133,13 +133,6 @@ class HandleScope { return result; } - // Deallocates any extensions used by the current scope. - static void DeleteExtensions(); - - static Address current_extensions_address(); - static Address current_next_address(); - static Address current_limit_address(); - private: // Prevent heap allocation or illegal handle scopes. HandleScope(const HandleScope&); @@ -173,6 +166,9 @@ class HandleScope { // Extend the handle scope making room for more handles. static internal::Object** Extend(); + // Deallocates any extensions used by the current scope. + static void DeleteExtensions(); + // Zaps the handles in the half-open interval [start, end). static void ZapRange(internal::Object** start, internal::Object** end); |