| 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 V(nan_string, "NaN") \ | 281 V(nan_string, "NaN") \ |
| 282 V(next_string, "next") \ | 282 V(next_string, "next") \ |
| 283 V(null_string, "null") \ | 283 V(null_string, "null") \ |
| 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(proto_string, "__proto__") \ | 292 V(proto_string, "__proto__") \ |
| 292 V(prototype_string, "prototype") \ | 293 V(prototype_string, "prototype") \ |
| 293 V(query_colon_string, "(?:)") \ | 294 V(query_colon_string, "(?:)") \ |
| 294 V(RegExp_string, "RegExp") \ | 295 V(RegExp_string, "RegExp") \ |
| 295 V(setPrototypeOf_string, "setPrototypeOf") \ | 296 V(setPrototypeOf_string, "setPrototypeOf") \ |
| 296 V(set_string, "set") \ | 297 V(set_string, "set") \ |
| 297 V(Set_string, "Set") \ | 298 V(Set_string, "Set") \ |
| 298 V(source_mapping_url_string, "source_mapping_url") \ | 299 V(source_mapping_url_string, "source_mapping_url") \ |
| 299 V(source_string, "source") \ | 300 V(source_string, "source") \ |
| 300 V(source_url_string, "source_url") \ | 301 V(source_url_string, "source_url") \ |
| (...skipping 2422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2723 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2724 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2724 | 2725 |
| 2725 private: | 2726 private: |
| 2726 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2727 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2727 }; | 2728 }; |
| 2728 #endif // DEBUG | 2729 #endif // DEBUG |
| 2729 } // namespace internal | 2730 } // namespace internal |
| 2730 } // namespace v8 | 2731 } // namespace v8 |
| 2731 | 2732 |
| 2732 #endif // V8_HEAP_HEAP_H_ | 2733 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |