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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 F(dot_iterator, ".iterator") \ | 297 F(dot_iterator, ".iterator") \ |
298 F(dot_result, ".result") \ | 298 F(dot_result, ".result") \ |
299 F(dot_switch_tag, ".switch_tag") \ | 299 F(dot_switch_tag, ".switch_tag") \ |
300 F(dot_catch, ".catch") \ | 300 F(dot_catch, ".catch") \ |
301 F(empty, "") \ | 301 F(empty, "") \ |
302 F(eval, "eval") \ | 302 F(eval, "eval") \ |
303 F(function, "function") \ | 303 F(function, "function") \ |
304 F(get_space, "get ") \ | 304 F(get_space, "get ") \ |
305 F(length, "length") \ | 305 F(length, "length") \ |
306 F(let, "let") \ | 306 F(let, "let") \ |
| 307 F(name, "name") \ |
307 F(native, "native") \ | 308 F(native, "native") \ |
308 F(new_target, ".new.target") \ | 309 F(new_target, ".new.target") \ |
309 F(next, "next") \ | 310 F(next, "next") \ |
310 F(proto, "__proto__") \ | 311 F(proto, "__proto__") \ |
311 F(prototype, "prototype") \ | 312 F(prototype, "prototype") \ |
312 F(return, "return") \ | 313 F(return, "return") \ |
313 F(set_space, "set ") \ | 314 F(set_space, "set ") \ |
314 F(star_default_star, "*default*") \ | 315 F(star_default_star, "*default*") \ |
315 F(this, "this") \ | 316 F(this, "this") \ |
316 F(this_function, ".this_function") \ | 317 F(this_function, ".this_function") \ |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 OTHER_CONSTANTS(F) | 441 OTHER_CONSTANTS(F) |
441 #undef F | 442 #undef F |
442 }; | 443 }; |
443 } // namespace internal | 444 } // namespace internal |
444 } // namespace v8 | 445 } // namespace v8 |
445 | 446 |
446 #undef STRING_CONSTANTS | 447 #undef STRING_CONSTANTS |
447 #undef OTHER_CONSTANTS | 448 #undef OTHER_CONSTANTS |
448 | 449 |
449 #endif // V8_AST_AST_VALUE_FACTORY_H_ | 450 #endif // V8_AST_AST_VALUE_FACTORY_H_ |
OLD | NEW |