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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 V(empty_string, "") \ | 283 V(empty_string, "") \ |
284 V(function_string, "function") \ | 284 V(function_string, "function") \ |
285 V(length_string, "length") \ | 285 V(length_string, "length") \ |
286 V(name_string, "name") \ | 286 V(name_string, "name") \ |
287 V(null_string, "null") \ | 287 V(null_string, "null") \ |
288 V(number_string, "number") \ | 288 V(number_string, "number") \ |
289 V(Number_string, "Number") \ | 289 V(Number_string, "Number") \ |
290 V(nan_string, "NaN") \ | 290 V(nan_string, "NaN") \ |
291 V(RegExp_string, "RegExp") \ | 291 V(RegExp_string, "RegExp") \ |
292 V(source_string, "source") \ | 292 V(source_string, "source") \ |
| 293 V(source_url_string, "source_url") \ |
| 294 V(source_mapping_url_string, "source_mapping_url") \ |
293 V(global_string, "global") \ | 295 V(global_string, "global") \ |
294 V(ignore_case_string, "ignoreCase") \ | 296 V(ignore_case_string, "ignoreCase") \ |
295 V(multiline_string, "multiline") \ | 297 V(multiline_string, "multiline") \ |
296 V(input_string, "input") \ | 298 V(input_string, "input") \ |
297 V(index_string, "index") \ | 299 V(index_string, "index") \ |
298 V(last_index_string, "lastIndex") \ | 300 V(last_index_string, "lastIndex") \ |
299 V(object_string, "object") \ | 301 V(object_string, "object") \ |
300 V(literals_string, "literals") \ | 302 V(literals_string, "literals") \ |
301 V(prototype_string, "prototype") \ | 303 V(prototype_string, "prototype") \ |
302 V(string_string, "string") \ | 304 V(string_string, "string") \ |
(...skipping 2478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2781 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2783 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2782 | 2784 |
2783 private: | 2785 private: |
2784 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2786 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2785 }; | 2787 }; |
2786 #endif // DEBUG | 2788 #endif // DEBUG |
2787 | 2789 |
2788 } } // namespace v8::internal | 2790 } } // namespace v8::internal |
2789 | 2791 |
2790 #endif // V8_HEAP_H_ | 2792 #endif // V8_HEAP_H_ |
OLD | NEW |