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_H_ | 5 #ifndef V8_HEAP_H_ |
6 #define V8_HEAP_H_ | 6 #define V8_HEAP_H_ |
7 | 7 |
8 #include <cmath> | 8 #include <cmath> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 V(length_string, "length") \ | 285 V(length_string, "length") \ |
286 V(module_string, "module") \ | 286 V(module_string, "module") \ |
287 V(name_string, "name") \ | 287 V(name_string, "name") \ |
288 V(native_string, "native") \ | 288 V(native_string, "native") \ |
289 V(null_string, "null") \ | 289 V(null_string, "null") \ |
290 V(number_string, "number") \ | 290 V(number_string, "number") \ |
291 V(Number_string, "Number") \ | 291 V(Number_string, "Number") \ |
292 V(nan_string, "NaN") \ | 292 V(nan_string, "NaN") \ |
293 V(RegExp_string, "RegExp") \ | 293 V(RegExp_string, "RegExp") \ |
294 V(source_string, "source") \ | 294 V(source_string, "source") \ |
| 295 V(source_url_string, "source_url") \ |
| 296 V(source_mapping_url_string, "source_mapping_url") \ |
295 V(global_string, "global") \ | 297 V(global_string, "global") \ |
296 V(ignore_case_string, "ignoreCase") \ | 298 V(ignore_case_string, "ignoreCase") \ |
297 V(multiline_string, "multiline") \ | 299 V(multiline_string, "multiline") \ |
298 V(input_string, "input") \ | 300 V(input_string, "input") \ |
299 V(index_string, "index") \ | 301 V(index_string, "index") \ |
300 V(last_index_string, "lastIndex") \ | 302 V(last_index_string, "lastIndex") \ |
301 V(object_string, "object") \ | 303 V(object_string, "object") \ |
302 V(literals_string, "literals") \ | 304 V(literals_string, "literals") \ |
303 V(prototype_string, "prototype") \ | 305 V(prototype_string, "prototype") \ |
304 V(string_string, "string") \ | 306 V(string_string, "string") \ |
(...skipping 2470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2775 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2777 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2776 | 2778 |
2777 private: | 2779 private: |
2778 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2780 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2779 }; | 2781 }; |
2780 #endif // DEBUG | 2782 #endif // DEBUG |
2781 | 2783 |
2782 } } // namespace v8::internal | 2784 } } // namespace v8::internal |
2783 | 2785 |
2784 #endif // V8_HEAP_H_ | 2786 #endif // V8_HEAP_H_ |
OLD | NEW |