OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 V(stack_overflow_string, "kStackOverflowBoilerplate") \ | 233 V(stack_overflow_string, "kStackOverflowBoilerplate") \ |
234 V(illegal_access_string, "illegal access") \ | 234 V(illegal_access_string, "illegal access") \ |
235 V(out_of_memory_string, "out-of-memory") \ | 235 V(out_of_memory_string, "out-of-memory") \ |
236 V(illegal_execution_state_string, "illegal execution state") \ | 236 V(illegal_execution_state_string, "illegal execution state") \ |
237 V(get_string, "get") \ | 237 V(get_string, "get") \ |
238 V(set_string, "set") \ | 238 V(set_string, "set") \ |
239 V(map_field_string, "%map") \ | 239 V(map_field_string, "%map") \ |
240 V(elements_field_string, "%elements") \ | 240 V(elements_field_string, "%elements") \ |
241 V(length_field_string, "%length") \ | 241 V(length_field_string, "%length") \ |
242 V(function_class_string, "Function") \ | 242 V(function_class_string, "Function") \ |
| 243 V(properties_field_symbol, "%properties") \ |
| 244 V(payload_field_symbol, "%payload") \ |
243 V(illegal_argument_string, "illegal argument") \ | 245 V(illegal_argument_string, "illegal argument") \ |
244 V(MakeReferenceError_string, "MakeReferenceError") \ | 246 V(MakeReferenceError_string, "MakeReferenceError") \ |
245 V(MakeSyntaxError_string, "MakeSyntaxError") \ | 247 V(MakeSyntaxError_string, "MakeSyntaxError") \ |
246 V(MakeTypeError_string, "MakeTypeError") \ | 248 V(MakeTypeError_string, "MakeTypeError") \ |
247 V(invalid_lhs_in_assignment_string, "invalid_lhs_in_assignment") \ | 249 V(invalid_lhs_in_assignment_string, "invalid_lhs_in_assignment") \ |
248 V(invalid_lhs_in_for_in_string, "invalid_lhs_in_for_in") \ | 250 V(invalid_lhs_in_for_in_string, "invalid_lhs_in_for_in") \ |
249 V(invalid_lhs_in_postfix_op_string, "invalid_lhs_in_postfix_op") \ | 251 V(invalid_lhs_in_postfix_op_string, "invalid_lhs_in_postfix_op") \ |
250 V(invalid_lhs_in_prefix_op_string, "invalid_lhs_in_prefix_op") \ | 252 V(invalid_lhs_in_prefix_op_string, "invalid_lhs_in_prefix_op") \ |
251 V(illegal_return_string, "illegal_return") \ | 253 V(illegal_return_string, "illegal_return") \ |
252 V(illegal_break_string, "illegal_break") \ | 254 V(illegal_break_string, "illegal_break") \ |
(...skipping 2767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3020 AssertNoAllocation no_alloc; // i.e. no gc allowed. | 3022 AssertNoAllocation no_alloc; // i.e. no gc allowed. |
3021 | 3023 |
3022 private: | 3024 private: |
3023 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3025 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3024 }; | 3026 }; |
3025 #endif // DEBUG | 3027 #endif // DEBUG |
3026 | 3028 |
3027 } } // namespace v8::internal | 3029 } } // namespace v8::internal |
3028 | 3030 |
3029 #endif // V8_HEAP_H_ | 3031 #endif // V8_HEAP_H_ |
OLD | NEW |