Index: src/handles.h |
diff --git a/src/handles.h b/src/handles.h |
index 4c9f9713651a565022ef998cb90019418a467c3a..3346a8dd3df1a6996030c2ea6a0be06f9219f120 100644 |
--- a/src/handles.h |
+++ b/src/handles.h |
@@ -275,7 +275,7 @@ class HandleScope { |
V8_INLINE static Object** CreateHandle(Isolate* isolate, Object* value); |
// Deallocates any extensions used by the current scope. |
- static void DeleteExtensions(Isolate* isolate); |
+ V8_EXPORT_PRIVATE static void DeleteExtensions(Isolate* isolate); |
static Address current_next_address(Isolate* isolate); |
static Address current_limit_address(Isolate* isolate); |
@@ -310,11 +310,11 @@ class HandleScope { |
Object** prev_limit); |
// Extend the handle scope making room for more handles. |
- static Object** Extend(Isolate* isolate); |
+ V8_EXPORT_PRIVATE static Object** Extend(Isolate* isolate); |
#ifdef ENABLE_HANDLE_ZAPPING |
// Zaps the handles in the half-open interval [start, end). |
- static void ZapRange(Object** start, Object** end); |
+ V8_EXPORT_PRIVATE static void ZapRange(Object** start, Object** end); |
#endif |
friend class v8::HandleScope; |
@@ -344,7 +344,7 @@ class CanonicalHandleScope final { |
~CanonicalHandleScope(); |
private: |
- Object** Lookup(Object* object); |
+ V8_EXPORT_PRIVATE Object** Lookup(Object* object); |
Isolate* isolate_; |
Zone zone_; |