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 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 V(nan_string, "NaN") \ | 225 V(nan_string, "NaN") \ |
226 V(source_string, "source") \ | 226 V(source_string, "source") \ |
227 V(source_url_string, "source_url") \ | 227 V(source_url_string, "source_url") \ |
228 V(source_mapping_url_string, "source_mapping_url") \ | 228 V(source_mapping_url_string, "source_mapping_url") \ |
229 V(global_string, "global") \ | 229 V(global_string, "global") \ |
230 V(ignore_case_string, "ignoreCase") \ | 230 V(ignore_case_string, "ignoreCase") \ |
231 V(multiline_string, "multiline") \ | 231 V(multiline_string, "multiline") \ |
232 V(sticky_string, "sticky") \ | 232 V(sticky_string, "sticky") \ |
233 V(unicode_string, "unicode") \ | 233 V(unicode_string, "unicode") \ |
234 V(harmony_regexps_string, "harmony_regexps") \ | 234 V(harmony_regexps_string, "harmony_regexps") \ |
| 235 V(harmony_tostring_string, "harmony_tostring") \ |
235 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \ | 236 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \ |
236 V(input_string, "input") \ | 237 V(input_string, "input") \ |
237 V(index_string, "index") \ | 238 V(index_string, "index") \ |
238 V(last_index_string, "lastIndex") \ | 239 V(last_index_string, "lastIndex") \ |
239 V(object_string, "object") \ | 240 V(object_string, "object") \ |
240 V(prototype_string, "prototype") \ | 241 V(prototype_string, "prototype") \ |
241 V(string_string, "string") \ | 242 V(string_string, "string") \ |
242 V(String_string, "String") \ | 243 V(String_string, "String") \ |
243 V(symbol_string, "symbol") \ | 244 V(symbol_string, "symbol") \ |
244 V(Symbol_string, "Symbol") \ | 245 V(Symbol_string, "Symbol") \ |
(...skipping 2351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2596 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2597 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2597 | 2598 |
2598 private: | 2599 private: |
2599 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2600 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2600 }; | 2601 }; |
2601 #endif // DEBUG | 2602 #endif // DEBUG |
2602 } | 2603 } |
2603 } // namespace v8::internal | 2604 } // namespace v8::internal |
2604 | 2605 |
2605 #endif // V8_HEAP_HEAP_H_ | 2606 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |