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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 V(nan_string, "NaN") \ | 252 V(nan_string, "NaN") \ |
253 V(source_string, "source") \ | 253 V(source_string, "source") \ |
254 V(source_url_string, "source_url") \ | 254 V(source_url_string, "source_url") \ |
255 V(source_mapping_url_string, "source_mapping_url") \ | 255 V(source_mapping_url_string, "source_mapping_url") \ |
256 V(this_string, "this") \ | 256 V(this_string, "this") \ |
257 V(global_string, "global") \ | 257 V(global_string, "global") \ |
258 V(ignore_case_string, "ignoreCase") \ | 258 V(ignore_case_string, "ignoreCase") \ |
259 V(multiline_string, "multiline") \ | 259 V(multiline_string, "multiline") \ |
260 V(sticky_string, "sticky") \ | 260 V(sticky_string, "sticky") \ |
261 V(unicode_string, "unicode") \ | 261 V(unicode_string, "unicode") \ |
| 262 V(harmony_tolength_string, "harmony_tolength") \ |
262 V(input_string, "input") \ | 263 V(input_string, "input") \ |
263 V(index_string, "index") \ | 264 V(index_string, "index") \ |
264 V(last_index_string, "lastIndex") \ | 265 V(last_index_string, "lastIndex") \ |
265 V(object_string, "object") \ | 266 V(object_string, "object") \ |
266 V(prototype_string, "prototype") \ | 267 V(prototype_string, "prototype") \ |
267 V(string_string, "string") \ | 268 V(string_string, "string") \ |
268 V(String_string, "String") \ | 269 V(String_string, "String") \ |
269 V(symbol_string, "symbol") \ | 270 V(symbol_string, "symbol") \ |
270 V(Symbol_string, "Symbol") \ | 271 V(Symbol_string, "Symbol") \ |
271 V(Map_string, "Map") \ | 272 V(Map_string, "Map") \ |
(...skipping 2434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2706 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2707 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2707 | 2708 |
2708 private: | 2709 private: |
2709 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2710 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2710 }; | 2711 }; |
2711 #endif // DEBUG | 2712 #endif // DEBUG |
2712 } | 2713 } |
2713 } // namespace v8::internal | 2714 } // namespace v8::internal |
2714 | 2715 |
2715 #endif // V8_HEAP_HEAP_H_ | 2716 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |