| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 F(native, "native") \ | 260 F(native, "native") \ |
| 261 F(new_target, "new.target") \ | 261 F(new_target, "new.target") \ |
| 262 F(next, "next") \ | 262 F(next, "next") \ |
| 263 F(proto, "__proto__") \ | 263 F(proto, "__proto__") \ |
| 264 F(prototype, "prototype") \ | 264 F(prototype, "prototype") \ |
| 265 F(reflect_apply, "$reflectApply") \ | 265 F(reflect_apply, "$reflectApply") \ |
| 266 F(reflect_construct, "$reflectConstruct") \ | 266 F(reflect_construct, "$reflectConstruct") \ |
| 267 F(spread_arguments, "$spreadArguments") \ | 267 F(spread_arguments, "$spreadArguments") \ |
| 268 F(spread_iterable, "$spreadIterable") \ | 268 F(spread_iterable, "$spreadIterable") \ |
| 269 F(this, "this") \ | 269 F(this, "this") \ |
| 270 F(this_function, ".this_function") \ |
| 270 F(throw_iterator_result_not_an_object, "ThrowIteratorResultNotAnObject") \ | 271 F(throw_iterator_result_not_an_object, "ThrowIteratorResultNotAnObject") \ |
| 271 F(to_string, "$toString") \ | 272 F(to_string, "$toString") \ |
| 272 F(undefined, "undefined") \ | 273 F(undefined, "undefined") \ |
| 273 F(use_asm, "use asm") \ | 274 F(use_asm, "use asm") \ |
| 274 F(use_strong, "use strong") \ | 275 F(use_strong, "use strong") \ |
| 275 F(use_strict, "use strict") \ | 276 F(use_strict, "use strict") \ |
| 276 F(value, "value") | 277 F(value, "value") |
| 277 | 278 |
| 278 #define OTHER_CONSTANTS(F) \ | 279 #define OTHER_CONSTANTS(F) \ |
| 279 F(true_value) \ | 280 F(true_value) \ |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 #define F(name) AstValue* name##_; | 369 #define F(name) AstValue* name##_; |
| 369 OTHER_CONSTANTS(F) | 370 OTHER_CONSTANTS(F) |
| 370 #undef F | 371 #undef F |
| 371 }; | 372 }; |
| 372 } } // namespace v8::internal | 373 } } // namespace v8::internal |
| 373 | 374 |
| 374 #undef STRING_CONSTANTS | 375 #undef STRING_CONSTANTS |
| 375 #undef OTHER_CONSTANTS | 376 #undef OTHER_CONSTANTS |
| 376 | 377 |
| 377 #endif // V8_AST_VALUE_FACTORY_H_ | 378 #endif // V8_AST_VALUE_FACTORY_H_ |
| OLD | NEW |