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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 F(proto, "__proto__") \ | 264 F(proto, "__proto__") \ |
265 F(prototype, "prototype") \ | 265 F(prototype, "prototype") \ |
266 F(rest_parameter, ".rest_parameter") \ | 266 F(rest_parameter, ".rest_parameter") \ |
267 F(return, "return") \ | 267 F(return, "return") \ |
268 F(set_space, "set ") \ | 268 F(set_space, "set ") \ |
269 F(this, "this") \ | 269 F(this, "this") \ |
270 F(this_function, ".this_function") \ | 270 F(this_function, ".this_function") \ |
271 F(throw, "throw") \ | 271 F(throw, "throw") \ |
272 F(undefined, "undefined") \ | 272 F(undefined, "undefined") \ |
273 F(use_asm, "use asm") \ | 273 F(use_asm, "use asm") \ |
274 F(use_strong, "use strong") \ | |
275 F(use_strict, "use strict") \ | 274 F(use_strict, "use strict") \ |
276 F(value, "value") | 275 F(value, "value") |
277 | 276 |
278 #define OTHER_CONSTANTS(F) \ | 277 #define OTHER_CONSTANTS(F) \ |
279 F(true_value) \ | 278 F(true_value) \ |
280 F(false_value) \ | 279 F(false_value) \ |
281 F(null_value) \ | 280 F(null_value) \ |
282 F(undefined_value) \ | 281 F(undefined_value) \ |
283 F(the_hole_value) | 282 F(the_hole_value) |
284 | 283 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 OTHER_CONSTANTS(F) | 368 OTHER_CONSTANTS(F) |
370 #undef F | 369 #undef F |
371 }; | 370 }; |
372 } // namespace internal | 371 } // namespace internal |
373 } // namespace v8 | 372 } // namespace v8 |
374 | 373 |
375 #undef STRING_CONSTANTS | 374 #undef STRING_CONSTANTS |
376 #undef OTHER_CONSTANTS | 375 #undef OTHER_CONSTANTS |
377 | 376 |
378 #endif // V8_AST_AST_VALUE_FACTORY_H_ | 377 #endif // V8_AST_AST_VALUE_FACTORY_H_ |
OLD | NEW |