| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 V(source_string, "source") \ | 256 V(source_string, "source") \ |
| 257 V(source_url_string, "source_url") \ | 257 V(source_url_string, "source_url") \ |
| 258 V(source_mapping_url_string, "source_mapping_url") \ | 258 V(source_mapping_url_string, "source_mapping_url") \ |
| 259 V(this_string, "this") \ | 259 V(this_string, "this") \ |
| 260 V(writable_string, "writable") \ | 260 V(writable_string, "writable") \ |
| 261 V(global_string, "global") \ | 261 V(global_string, "global") \ |
| 262 V(ignore_case_string, "ignoreCase") \ | 262 V(ignore_case_string, "ignoreCase") \ |
| 263 V(multiline_string, "multiline") \ | 263 V(multiline_string, "multiline") \ |
| 264 V(sticky_string, "sticky") \ | 264 V(sticky_string, "sticky") \ |
| 265 V(unicode_string, "unicode") \ | 265 V(unicode_string, "unicode") \ |
| 266 V(harmony_tolength_string, "harmony_tolength") \ | |
| 267 V(input_string, "input") \ | 266 V(input_string, "input") \ |
| 268 V(index_string, "index") \ | 267 V(index_string, "index") \ |
| 269 V(last_index_string, "lastIndex") \ | 268 V(last_index_string, "lastIndex") \ |
| 270 V(object_string, "object") \ | 269 V(object_string, "object") \ |
| 271 V(prototype_string, "prototype") \ | 270 V(prototype_string, "prototype") \ |
| 272 V(string_string, "string") \ | 271 V(string_string, "string") \ |
| 273 V(String_string, "String") \ | 272 V(String_string, "String") \ |
| 274 V(symbol_string, "symbol") \ | 273 V(symbol_string, "symbol") \ |
| 275 V(Symbol_string, "Symbol") \ | 274 V(Symbol_string, "Symbol") \ |
| 276 V(Map_string, "Map") \ | 275 V(Map_string, "Map") \ |
| (...skipping 2455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2732 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2731 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2733 | 2732 |
| 2734 private: | 2733 private: |
| 2735 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2734 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2736 }; | 2735 }; |
| 2737 #endif // DEBUG | 2736 #endif // DEBUG |
| 2738 } // namespace internal | 2737 } // namespace internal |
| 2739 } // namespace v8 | 2738 } // namespace v8 |
| 2740 | 2739 |
| 2741 #endif // V8_HEAP_HEAP_H_ | 2740 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |