OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 F(make_type_error, "MakeTypeError") \ | 257 F(make_type_error, "MakeTypeError") \ |
258 F(native, "native") \ | 258 F(native, "native") \ |
259 F(new_target, "new.target") \ | 259 F(new_target, "new.target") \ |
260 F(next, "next") \ | 260 F(next, "next") \ |
261 F(proto, "__proto__") \ | 261 F(proto, "__proto__") \ |
262 F(prototype, "prototype") \ | 262 F(prototype, "prototype") \ |
263 F(reflect_apply, "$reflectApply") \ | 263 F(reflect_apply, "$reflectApply") \ |
264 F(reflect_construct, "$reflectConstruct") \ | 264 F(reflect_construct, "$reflectConstruct") \ |
265 F(spread_arguments, "$spreadArguments") \ | 265 F(spread_arguments, "$spreadArguments") \ |
266 F(spread_iterable, "$spreadIterable") \ | 266 F(spread_iterable, "$spreadIterable") \ |
| 267 F(spread_into_array, "$spreadIntoArray") \ |
267 F(this, "this") \ | 268 F(this, "this") \ |
268 F(throw_iterator_result_not_an_object, "ThrowIteratorResultNotAnObject") \ | 269 F(throw_iterator_result_not_an_object, "ThrowIteratorResultNotAnObject") \ |
269 F(to_string, "$toString") \ | 270 F(to_string, "$toString") \ |
270 F(undefined, "undefined") \ | 271 F(undefined, "undefined") \ |
271 F(use_asm, "use asm") \ | 272 F(use_asm, "use asm") \ |
272 F(use_strong, "use strong") \ | 273 F(use_strong, "use strong") \ |
273 F(use_strict, "use strict") \ | 274 F(use_strict, "use strict") \ |
274 F(value, "value") | 275 F(value, "value") |
275 | 276 |
276 #define OTHER_CONSTANTS(F) \ | 277 #define OTHER_CONSTANTS(F) \ |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 #define F(name) AstValue* name##_; | 367 #define F(name) AstValue* name##_; |
367 OTHER_CONSTANTS(F) | 368 OTHER_CONSTANTS(F) |
368 #undef F | 369 #undef F |
369 }; | 370 }; |
370 } } // namespace v8::internal | 371 } } // namespace v8::internal |
371 | 372 |
372 #undef STRING_CONSTANTS | 373 #undef STRING_CONSTANTS |
373 #undef OTHER_CONSTANTS | 374 #undef OTHER_CONSTANTS |
374 | 375 |
375 #endif // V8_AST_VALUE_FACTORY_H_ | 376 #endif // V8_AST_VALUE_FACTORY_H_ |
OLD | NEW |