| Index: src/heap/heap.h
|
| diff --git a/src/heap/heap.h b/src/heap/heap.h
|
| index 7e0ca44882b72d221f2dcda4594f0deb1b430930..d5d4b1f6561c9b76fc944b205adf2e386e6c3818 100644
|
| --- a/src/heap/heap.h
|
| +++ b/src/heap/heap.h
|
| @@ -37,6 +37,7 @@ namespace internal {
|
| V(Oddball, null_value, NullValue) \
|
| V(Oddball, true_value, TrueValue) \
|
| V(Oddball, false_value, FalseValue) \
|
| + V(String, empty_string, empty_string) \
|
| V(Oddball, uninitialized_value, UninitializedValue) \
|
| V(Map, cell_map, CellMap) \
|
| V(Map, global_property_cell_map, GlobalPropertyCellMap) \
|
| @@ -214,7 +215,6 @@ namespace internal {
|
| V(constructor_string, "constructor") \
|
| V(dot_result_string, ".result") \
|
| V(eval_string, "eval") \
|
| - V(empty_string, "") \
|
| V(function_string, "function") \
|
| V(Function_string, "Function") \
|
| V(length_string, "length") \
|
| @@ -370,6 +370,7 @@ namespace internal {
|
| V(JSMessageObjectMap) \
|
| V(ForeignMap) \
|
| V(NeanderMap) \
|
| + V(empty_string) \
|
| PRIVATE_SYMBOL_LIST(V)
|
|
|
| // Forward declarations.
|
|
|