| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_HEAP_HEAP_H_ | 5 #ifndef V8_HEAP_HEAP_H_ |
| 6 #define V8_HEAP_HEAP_H_ | 6 #define V8_HEAP_HEAP_H_ |
| 7 | 7 |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 V(number_string, "number") \ | 284 V(number_string, "number") \ |
| 285 V(Number_string, "Number") \ | 285 V(Number_string, "Number") \ |
| 286 V(object_string, "object") \ | 286 V(object_string, "object") \ |
| 287 V(Object_string, "Object") \ | 287 V(Object_string, "Object") \ |
| 288 V(ownKeys_string, "ownKeys") \ | 288 V(ownKeys_string, "ownKeys") \ |
| 289 V(preventExtensions_string, "preventExtensions") \ | 289 V(preventExtensions_string, "preventExtensions") \ |
| 290 V(private_api_string, "private_api") \ | 290 V(private_api_string, "private_api") \ |
| 291 V(Promise_string, "Promise") \ | 291 V(Promise_string, "Promise") \ |
| 292 V(proto_string, "__proto__") \ | 292 V(proto_string, "__proto__") \ |
| 293 V(prototype_string, "prototype") \ | 293 V(prototype_string, "prototype") \ |
| 294 V(Proxy_string, "Proxy") \ |
| 294 V(query_colon_string, "(?:)") \ | 295 V(query_colon_string, "(?:)") \ |
| 295 V(RegExp_string, "RegExp") \ | 296 V(RegExp_string, "RegExp") \ |
| 296 V(setPrototypeOf_string, "setPrototypeOf") \ | 297 V(setPrototypeOf_string, "setPrototypeOf") \ |
| 297 V(set_string, "set") \ | 298 V(set_string, "set") \ |
| 298 V(Set_string, "Set") \ | 299 V(Set_string, "Set") \ |
| 299 V(source_mapping_url_string, "source_mapping_url") \ | 300 V(source_mapping_url_string, "source_mapping_url") \ |
| 300 V(source_string, "source") \ | 301 V(source_string, "source") \ |
| 301 V(source_url_string, "source_url") \ | 302 V(source_url_string, "source_url") \ |
| 302 V(stack_string, "stack") \ | 303 V(stack_string, "stack") \ |
| 303 V(strict_compare_ic_string, "===") \ | 304 V(strict_compare_ic_string, "===") \ |
| (...skipping 2427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2731 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2732 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2732 | 2733 |
| 2733 private: | 2734 private: |
| 2734 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2735 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2735 }; | 2736 }; |
| 2736 #endif // DEBUG | 2737 #endif // DEBUG |
| 2737 } // namespace internal | 2738 } // namespace internal |
| 2738 } // namespace v8 | 2739 } // namespace v8 |
| 2739 | 2740 |
| 2740 #endif // V8_HEAP_HEAP_H_ | 2741 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |