OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_BUILTINS_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_BUILTINS_H_ |
6 #define V8_BUILTINS_BUILTINS_H_ | 6 #define V8_BUILTINS_BUILTINS_H_ |
7 | 7 |
8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/handles.h" | 9 #include "src/handles.h" |
10 | 10 |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 CPP(ReflectGetPrototypeOf) \ | 486 CPP(ReflectGetPrototypeOf) \ |
487 CPP(ReflectHas) \ | 487 CPP(ReflectHas) \ |
488 CPP(ReflectIsExtensible) \ | 488 CPP(ReflectIsExtensible) \ |
489 CPP(ReflectOwnKeys) \ | 489 CPP(ReflectOwnKeys) \ |
490 CPP(ReflectPreventExtensions) \ | 490 CPP(ReflectPreventExtensions) \ |
491 CPP(ReflectSet) \ | 491 CPP(ReflectSet) \ |
492 CPP(ReflectSetPrototypeOf) \ | 492 CPP(ReflectSetPrototypeOf) \ |
493 \ | 493 \ |
494 /* RegExp */ \ | 494 /* RegExp */ \ |
495 CPP(RegExpConstructor) \ | 495 CPP(RegExpConstructor) \ |
| 496 CPP(RegExpPrototypeCompile) \ |
| 497 CPP(RegExpPrototypeToString) \ |
496 CPP(RegExpPrototypeCapture1Getter) \ | 498 CPP(RegExpPrototypeCapture1Getter) \ |
497 CPP(RegExpPrototypeCapture2Getter) \ | 499 CPP(RegExpPrototypeCapture2Getter) \ |
498 CPP(RegExpPrototypeCapture3Getter) \ | 500 CPP(RegExpPrototypeCapture3Getter) \ |
499 CPP(RegExpPrototypeCapture4Getter) \ | 501 CPP(RegExpPrototypeCapture4Getter) \ |
500 CPP(RegExpPrototypeCapture5Getter) \ | 502 CPP(RegExpPrototypeCapture5Getter) \ |
501 CPP(RegExpPrototypeCapture6Getter) \ | 503 CPP(RegExpPrototypeCapture6Getter) \ |
502 CPP(RegExpPrototypeCapture7Getter) \ | 504 CPP(RegExpPrototypeCapture7Getter) \ |
503 CPP(RegExpPrototypeCapture8Getter) \ | 505 CPP(RegExpPrototypeCapture8Getter) \ |
504 CPP(RegExpPrototypeCapture9Getter) \ | 506 CPP(RegExpPrototypeCapture9Getter) \ |
505 CPP(RegExpPrototypeFlagsGetter) \ | 507 CPP(RegExpPrototypeFlagsGetter) \ |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
696 | 698 |
697 friend class Isolate; | 699 friend class Isolate; |
698 | 700 |
699 DISALLOW_COPY_AND_ASSIGN(Builtins); | 701 DISALLOW_COPY_AND_ASSIGN(Builtins); |
700 }; | 702 }; |
701 | 703 |
702 } // namespace internal | 704 } // namespace internal |
703 } // namespace v8 | 705 } // namespace v8 |
704 | 706 |
705 #endif // V8_BUILTINS_BUILTINS_H_ | 707 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |