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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 V(global_string, "global") \ | 206 V(global_string, "global") \ |
207 V(ignore_case_string, "ignoreCase") \ | 207 V(ignore_case_string, "ignoreCase") \ |
208 V(multiline_string, "multiline") \ | 208 V(multiline_string, "multiline") \ |
209 V(input_string, "input") \ | 209 V(input_string, "input") \ |
210 V(index_string, "index") \ | 210 V(index_string, "index") \ |
211 V(last_index_string, "lastIndex") \ | 211 V(last_index_string, "lastIndex") \ |
212 V(object_string, "object") \ | 212 V(object_string, "object") \ |
213 V(prototype_string, "prototype") \ | 213 V(prototype_string, "prototype") \ |
214 V(string_string, "string") \ | 214 V(string_string, "string") \ |
215 V(String_string, "String") \ | 215 V(String_string, "String") \ |
| 216 V(symbol_string, "symbol") \ |
| 217 V(Symbol_string, "Symbol") \ |
216 V(Date_string, "Date") \ | 218 V(Date_string, "Date") \ |
217 V(this_string, "this") \ | 219 V(this_string, "this") \ |
218 V(to_string_string, "toString") \ | 220 V(to_string_string, "toString") \ |
219 V(char_at_string, "CharAt") \ | 221 V(char_at_string, "CharAt") \ |
220 V(undefined_string, "undefined") \ | 222 V(undefined_string, "undefined") \ |
221 V(value_of_string, "valueOf") \ | 223 V(value_of_string, "valueOf") \ |
222 V(stack_string, "stack") \ | 224 V(stack_string, "stack") \ |
223 V(InitializeVarGlobal_string, "InitializeVarGlobal") \ | 225 V(InitializeVarGlobal_string, "InitializeVarGlobal") \ |
224 V(InitializeConstGlobal_string, "InitializeConstGlobal") \ | 226 V(InitializeConstGlobal_string, "InitializeConstGlobal") \ |
225 V(KeyedLoadElementMonomorphic_string, \ | 227 V(KeyedLoadElementMonomorphic_string, \ |
(...skipping 2801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3027 AssertNoAllocation no_alloc; // i.e. no gc allowed. | 3029 AssertNoAllocation no_alloc; // i.e. no gc allowed. |
3028 | 3030 |
3029 private: | 3031 private: |
3030 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3032 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3031 }; | 3033 }; |
3032 #endif // DEBUG | 3034 #endif // DEBUG |
3033 | 3035 |
3034 } } // namespace v8::internal | 3036 } } // namespace v8::internal |
3035 | 3037 |
3036 #endif // V8_HEAP_H_ | 3038 #endif // V8_HEAP_H_ |
OLD | NEW |