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(function, "function") \ | 260 F(function, "function") \ |
261 F(get_space, "get ") \ | 261 F(get_space, "get ") \ |
262 F(let, "let") \ | 262 F(let, "let") \ |
263 F(native, "native") \ | 263 F(native, "native") \ |
264 F(new_target, ".new.target") \ | 264 F(new_target, ".new.target") \ |
265 F(next, "next") \ | 265 F(next, "next") \ |
266 F(proto, "__proto__") \ | 266 F(proto, "__proto__") \ |
267 F(prototype, "prototype") \ | 267 F(prototype, "prototype") \ |
268 F(return, "return") \ | 268 F(return, "return") \ |
269 F(set_space, "set ") \ | 269 F(set_space, "set ") \ |
| 270 F(star_default_star, "*default*") \ |
270 F(this, "this") \ | 271 F(this, "this") \ |
271 F(this_function, ".this_function") \ | 272 F(this_function, ".this_function") \ |
272 F(throw, "throw") \ | 273 F(throw, "throw") \ |
273 F(undefined, "undefined") \ | 274 F(undefined, "undefined") \ |
274 F(use_asm, "use asm") \ | 275 F(use_asm, "use asm") \ |
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 OTHER_CONSTANTS(F) | 370 OTHER_CONSTANTS(F) |
370 #undef F | 371 #undef F |
371 }; | 372 }; |
372 } // namespace internal | 373 } // namespace internal |
373 } // namespace v8 | 374 } // namespace v8 |
374 | 375 |
375 #undef STRING_CONSTANTS | 376 #undef STRING_CONSTANTS |
376 #undef OTHER_CONSTANTS | 377 #undef OTHER_CONSTANTS |
377 | 378 |
378 #endif // V8_AST_AST_VALUE_FACTORY_H_ | 379 #endif // V8_AST_AST_VALUE_FACTORY_H_ |
OLD | NEW |