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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 F(dot, ".") \ | 241 F(dot, ".") \ |
242 F(dot_for, ".for") \ | 242 F(dot_for, ".for") \ |
243 F(dot_generator, ".generator") \ | 243 F(dot_generator, ".generator") \ |
244 F(dot_generator_object, ".generator_object") \ | 244 F(dot_generator_object, ".generator_object") \ |
245 F(dot_iterator, ".iterator") \ | 245 F(dot_iterator, ".iterator") \ |
246 F(dot_module, ".module") \ | 246 F(dot_module, ".module") \ |
247 F(dot_result, ".result") \ | 247 F(dot_result, ".result") \ |
248 F(empty, "") \ | 248 F(empty, "") \ |
249 F(eval, "eval") \ | 249 F(eval, "eval") \ |
250 F(get_template_callsite, "$getTemplateCallSite") \ | 250 F(get_template_callsite, "$getTemplateCallSite") \ |
251 F(home_object, ".home_object") \ | |
252 F(initialize_const_global, "initializeConstGlobal") \ | 251 F(initialize_const_global, "initializeConstGlobal") \ |
253 F(initialize_var_global, "initializeVarGlobal") \ | 252 F(initialize_var_global, "initializeVarGlobal") \ |
254 F(is_construct_call, "_IsConstructCall") \ | 253 F(is_construct_call, "_IsConstructCall") \ |
255 F(is_spec_object, "_IsSpecObject") \ | 254 F(is_spec_object, "_IsSpecObject") \ |
256 F(let, "let") \ | 255 F(let, "let") \ |
257 F(make_reference_error, "MakeReferenceError") \ | 256 F(make_reference_error, "MakeReferenceError") \ |
258 F(make_syntax_error, "MakeSyntaxError") \ | 257 F(make_syntax_error, "MakeSyntaxError") \ |
259 F(make_type_error, "MakeTypeError") \ | 258 F(make_type_error, "MakeTypeError") \ |
260 F(native, "native") \ | 259 F(native, "native") \ |
261 F(new_target, "new.target") \ | 260 F(new_target, "new.target") \ |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 #define F(name) AstValue* name##_; | 368 #define F(name) AstValue* name##_; |
370 OTHER_CONSTANTS(F) | 369 OTHER_CONSTANTS(F) |
371 #undef F | 370 #undef F |
372 }; | 371 }; |
373 } } // namespace v8::internal | 372 } } // namespace v8::internal |
374 | 373 |
375 #undef STRING_CONSTANTS | 374 #undef STRING_CONSTANTS |
376 #undef OTHER_CONSTANTS | 375 #undef OTHER_CONSTANTS |
377 | 376 |
378 #endif // V8_AST_VALUE_FACTORY_H_ | 377 #endif // V8_AST_VALUE_FACTORY_H_ |
OLD | NEW |