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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 #define STRING_CONSTANTS(F) \ | 277 #define STRING_CONSTANTS(F) \ |
278 F(anonymous_function, "(anonymous function)") \ | 278 F(anonymous_function, "(anonymous function)") \ |
279 F(arguments, "arguments") \ | 279 F(arguments, "arguments") \ |
280 F(async, "async") \ | 280 F(async, "async") \ |
281 F(await, "await") \ | 281 F(await, "await") \ |
282 F(constructor, "constructor") \ | 282 F(constructor, "constructor") \ |
283 F(default, "default") \ | 283 F(default, "default") \ |
284 F(done, "done") \ | 284 F(done, "done") \ |
285 F(dot, ".") \ | 285 F(dot, ".") \ |
286 F(dot_class_field_init, ".class-field-init") \ | 286 F(dot_class_field_init, ".class-field-init") \ |
287 F(dot_debug_is_active, ".debug_is_active") \ | |
288 F(dot_for, ".for") \ | 287 F(dot_for, ".for") \ |
289 F(dot_generator_object, ".generator_object") \ | 288 F(dot_generator_object, ".generator_object") \ |
290 F(dot_iterator, ".iterator") \ | 289 F(dot_iterator, ".iterator") \ |
291 F(dot_promise, ".promise") \ | |
292 F(dot_result, ".result") \ | 290 F(dot_result, ".result") \ |
293 F(dot_switch_tag, ".switch_tag") \ | 291 F(dot_switch_tag, ".switch_tag") \ |
294 F(dot_catch, ".catch") \ | 292 F(dot_catch, ".catch") \ |
295 F(empty, "") \ | 293 F(empty, "") \ |
296 F(eval, "eval") \ | 294 F(eval, "eval") \ |
297 F(function, "function") \ | 295 F(function, "function") \ |
298 F(get_space, "get ") \ | 296 F(get_space, "get ") \ |
299 F(length, "length") \ | 297 F(length, "length") \ |
300 F(let, "let") \ | 298 F(let, "let") \ |
301 F(native, "native") \ | 299 F(native, "native") \ |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 OTHER_CONSTANTS(F) | 423 OTHER_CONSTANTS(F) |
426 #undef F | 424 #undef F |
427 }; | 425 }; |
428 } // namespace internal | 426 } // namespace internal |
429 } // namespace v8 | 427 } // namespace v8 |
430 | 428 |
431 #undef STRING_CONSTANTS | 429 #undef STRING_CONSTANTS |
432 #undef OTHER_CONSTANTS | 430 #undef OTHER_CONSTANTS |
433 | 431 |
434 #endif // V8_AST_AST_VALUE_FACTORY_H_ | 432 #endif // V8_AST_AST_VALUE_FACTORY_H_ |
OLD | NEW |