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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 F(dot_generator_object, ".generator_object") \ | 289 F(dot_generator_object, ".generator_object") \ |
290 F(dot_iterator, ".iterator") \ | 290 F(dot_iterator, ".iterator") \ |
291 F(dot_promise, ".promise") \ | 291 F(dot_promise, ".promise") \ |
292 F(dot_result, ".result") \ | 292 F(dot_result, ".result") \ |
293 F(dot_switch_tag, ".switch_tag") \ | 293 F(dot_switch_tag, ".switch_tag") \ |
294 F(dot_catch, ".catch") \ | 294 F(dot_catch, ".catch") \ |
295 F(empty, "") \ | 295 F(empty, "") \ |
296 F(eval, "eval") \ | 296 F(eval, "eval") \ |
297 F(function, "function") \ | 297 F(function, "function") \ |
298 F(get_space, "get ") \ | 298 F(get_space, "get ") \ |
| 299 F(length, "length") \ |
299 F(let, "let") \ | 300 F(let, "let") \ |
300 F(native, "native") \ | 301 F(native, "native") \ |
301 F(new_target, ".new.target") \ | 302 F(new_target, ".new.target") \ |
302 F(next, "next") \ | 303 F(next, "next") \ |
303 F(proto, "__proto__") \ | 304 F(proto, "__proto__") \ |
304 F(prototype, "prototype") \ | 305 F(prototype, "prototype") \ |
305 F(return, "return") \ | 306 F(return, "return") \ |
306 F(set_space, "set ") \ | 307 F(set_space, "set ") \ |
307 F(star_default_star, "*default*") \ | 308 F(star_default_star, "*default*") \ |
308 F(this, "this") \ | 309 F(this, "this") \ |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 OTHER_CONSTANTS(F) | 436 OTHER_CONSTANTS(F) |
436 #undef F | 437 #undef F |
437 }; | 438 }; |
438 } // namespace internal | 439 } // namespace internal |
439 } // namespace v8 | 440 } // namespace v8 |
440 | 441 |
441 #undef STRING_CONSTANTS | 442 #undef STRING_CONSTANTS |
442 #undef OTHER_CONSTANTS | 443 #undef OTHER_CONSTANTS |
443 | 444 |
444 #endif // V8_AST_AST_VALUE_FACTORY_H_ | 445 #endif // V8_AST_AST_VALUE_FACTORY_H_ |
OLD | NEW |