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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 V(Function_string, "Function") \ | 220 V(Function_string, "Function") \ |
221 V(length_string, "length") \ | 221 V(length_string, "length") \ |
222 V(name_string, "name") \ | 222 V(name_string, "name") \ |
223 V(null_string, "null") \ | 223 V(null_string, "null") \ |
224 V(number_string, "number") \ | 224 V(number_string, "number") \ |
225 V(Number_string, "Number") \ | 225 V(Number_string, "Number") \ |
226 V(nan_string, "NaN") \ | 226 V(nan_string, "NaN") \ |
227 V(source_string, "source") \ | 227 V(source_string, "source") \ |
228 V(source_url_string, "source_url") \ | 228 V(source_url_string, "source_url") \ |
229 V(source_mapping_url_string, "source_mapping_url") \ | 229 V(source_mapping_url_string, "source_mapping_url") \ |
| 230 V(this_string, "this") \ |
230 V(global_string, "global") \ | 231 V(global_string, "global") \ |
231 V(ignore_case_string, "ignoreCase") \ | 232 V(ignore_case_string, "ignoreCase") \ |
232 V(multiline_string, "multiline") \ | 233 V(multiline_string, "multiline") \ |
233 V(sticky_string, "sticky") \ | 234 V(sticky_string, "sticky") \ |
234 V(unicode_string, "unicode") \ | 235 V(unicode_string, "unicode") \ |
235 V(harmony_regexps_string, "harmony_regexps") \ | 236 V(harmony_regexps_string, "harmony_regexps") \ |
236 V(harmony_tostring_string, "harmony_tostring") \ | 237 V(harmony_tostring_string, "harmony_tostring") \ |
237 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \ | 238 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \ |
238 V(input_string, "input") \ | 239 V(input_string, "input") \ |
239 V(index_string, "index") \ | 240 V(index_string, "index") \ |
(...skipping 2366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2606 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2607 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2607 | 2608 |
2608 private: | 2609 private: |
2609 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2610 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2610 }; | 2611 }; |
2611 #endif // DEBUG | 2612 #endif // DEBUG |
2612 } | 2613 } |
2613 } // namespace v8::internal | 2614 } // namespace v8::internal |
2614 | 2615 |
2615 #endif // V8_HEAP_HEAP_H_ | 2616 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |