| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 F(dot_catch, ".catch") \ | 295 F(dot_catch, ".catch") \ |
| 296 F(empty, "") \ | 296 F(empty, "") \ |
| 297 F(eval, "eval") \ | 297 F(eval, "eval") \ |
| 298 F(function, "function") \ | 298 F(function, "function") \ |
| 299 F(get_space, "get ") \ | 299 F(get_space, "get ") \ |
| 300 F(length, "length") \ | 300 F(length, "length") \ |
| 301 F(let, "let") \ | 301 F(let, "let") \ |
| 302 F(native, "native") \ | 302 F(native, "native") \ |
| 303 F(new_target, ".new.target") \ | 303 F(new_target, ".new.target") \ |
| 304 F(next, "next") \ | 304 F(next, "next") \ |
| 305 F(number_sign, "#") \ |
| 305 F(proto, "__proto__") \ | 306 F(proto, "__proto__") \ |
| 306 F(prototype, "prototype") \ | 307 F(prototype, "prototype") \ |
| 307 F(return, "return") \ | 308 F(return, "return") \ |
| 308 F(set_space, "set ") \ | 309 F(set_space, "set ") \ |
| 309 F(star_default_star, "*default*") \ | 310 F(star_default_star, "*default*") \ |
| 310 F(this, "this") \ | 311 F(this, "this") \ |
| 311 F(this_function, ".this_function") \ | 312 F(this_function, ".this_function") \ |
| 312 F(throw, "throw") \ | 313 F(throw, "throw") \ |
| 313 F(undefined, "undefined") \ | 314 F(undefined, "undefined") \ |
| 314 F(use_asm, "use asm") \ | 315 F(use_asm, "use asm") \ |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 OTHER_CONSTANTS(F) | 438 OTHER_CONSTANTS(F) |
| 438 #undef F | 439 #undef F |
| 439 }; | 440 }; |
| 440 } // namespace internal | 441 } // namespace internal |
| 441 } // namespace v8 | 442 } // namespace v8 |
| 442 | 443 |
| 443 #undef STRING_CONSTANTS | 444 #undef STRING_CONSTANTS |
| 444 #undef OTHER_CONSTANTS | 445 #undef OTHER_CONSTANTS |
| 445 | 446 |
| 446 #endif // V8_AST_AST_VALUE_FACTORY_H_ | 447 #endif // V8_AST_AST_VALUE_FACTORY_H_ |
| OLD | NEW |