| Index: src/heap/heap.h
|
| diff --git a/src/heap/heap.h b/src/heap/heap.h
|
| index d398599f1d591faebe488d1adb56f6965c3422e3..e5f7fe99ff86b74d3063d3a1801e837e78ea6705 100644
|
| --- a/src/heap/heap.h
|
| +++ b/src/heap/heap.h
|
| @@ -271,7 +271,6 @@ namespace internal {
|
| V(illegal_access_string, "illegal access") \
|
| V(cell_value_string, "%cell_value") \
|
| V(illegal_argument_string, "illegal argument") \
|
| - V(identity_hash_string, "v8::IdentityHash") \
|
| V(closure_string, "(closure)") \
|
| V(dot_string, ".") \
|
| V(compare_ic_string, "==") \
|
| @@ -294,6 +293,7 @@ namespace internal {
|
| #define PRIVATE_SYMBOL_LIST(V) \
|
| V(nonextensible_symbol) \
|
| V(sealed_symbol) \
|
| + V(hash_code_symbol) \
|
| V(frozen_symbol) \
|
| V(nonexistent_symbol) \
|
| V(elements_transition_symbol) \
|
| @@ -1754,6 +1754,8 @@ class Heap {
|
| // any string when looked up in properties.
|
| String* hidden_string_;
|
|
|
| + void AddPrivateGlobalSymbols(Handle<Object> private_intern_table);
|
| +
|
| // GC callback function, called before and after mark-compact GC.
|
| // Allocations in the callback function are disallowed.
|
| struct GCPrologueCallbackPair {
|
|
|