| 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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 /* RegExp */ \ | 590 /* RegExp */ \ |
| 591 CPP(RegExpCapture1Getter) \ | 591 CPP(RegExpCapture1Getter) \ |
| 592 CPP(RegExpCapture2Getter) \ | 592 CPP(RegExpCapture2Getter) \ |
| 593 CPP(RegExpCapture3Getter) \ | 593 CPP(RegExpCapture3Getter) \ |
| 594 CPP(RegExpCapture4Getter) \ | 594 CPP(RegExpCapture4Getter) \ |
| 595 CPP(RegExpCapture5Getter) \ | 595 CPP(RegExpCapture5Getter) \ |
| 596 CPP(RegExpCapture6Getter) \ | 596 CPP(RegExpCapture6Getter) \ |
| 597 CPP(RegExpCapture7Getter) \ | 597 CPP(RegExpCapture7Getter) \ |
| 598 CPP(RegExpCapture8Getter) \ | 598 CPP(RegExpCapture8Getter) \ |
| 599 CPP(RegExpCapture9Getter) \ | 599 CPP(RegExpCapture9Getter) \ |
| 600 CPP(RegExpConstructor) \ | 600 TFJ(RegExpConstructor, 2) \ |
| 601 TFJ(RegExpInternalMatch, 2) \ | 601 TFJ(RegExpInternalMatch, 2) \ |
| 602 CPP(RegExpInputGetter) \ | 602 CPP(RegExpInputGetter) \ |
| 603 CPP(RegExpInputSetter) \ | 603 CPP(RegExpInputSetter) \ |
| 604 CPP(RegExpLastMatchGetter) \ | 604 CPP(RegExpLastMatchGetter) \ |
| 605 CPP(RegExpLastParenGetter) \ | 605 CPP(RegExpLastParenGetter) \ |
| 606 CPP(RegExpLeftContextGetter) \ | 606 CPP(RegExpLeftContextGetter) \ |
| 607 CPP(RegExpPrototypeCompile) \ | 607 TFJ(RegExpPrototypeCompile, 2) \ |
| 608 TFJ(RegExpPrototypeExec, 1) \ | 608 TFJ(RegExpPrototypeExec, 1) \ |
| 609 TFJ(RegExpPrototypeFlagsGetter, 0) \ | 609 TFJ(RegExpPrototypeFlagsGetter, 0) \ |
| 610 TFJ(RegExpPrototypeGlobalGetter, 0) \ | 610 TFJ(RegExpPrototypeGlobalGetter, 0) \ |
| 611 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ | 611 TFJ(RegExpPrototypeIgnoreCaseGetter, 0) \ |
| 612 TFJ(RegExpPrototypeMatch, 1) \ | 612 TFJ(RegExpPrototypeMatch, 1) \ |
| 613 TFJ(RegExpPrototypeMultilineGetter, 0) \ | 613 TFJ(RegExpPrototypeMultilineGetter, 0) \ |
| 614 TFJ(RegExpPrototypeReplace, 2) \ | 614 TFJ(RegExpPrototypeReplace, 2) \ |
| 615 TFJ(RegExpPrototypeSearch, 1) \ | 615 TFJ(RegExpPrototypeSearch, 1) \ |
| 616 TFJ(RegExpPrototypeSourceGetter, 0) \ | 616 TFJ(RegExpPrototypeSourceGetter, 0) \ |
| 617 TFJ(RegExpPrototypeSpeciesGetter, 0) \ | 617 TFJ(RegExpPrototypeSpeciesGetter, 0) \ |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 | 842 |
| 843 friend class Isolate; | 843 friend class Isolate; |
| 844 | 844 |
| 845 DISALLOW_COPY_AND_ASSIGN(Builtins); | 845 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 846 }; | 846 }; |
| 847 | 847 |
| 848 } // namespace internal | 848 } // namespace internal |
| 849 } // namespace v8 | 849 } // namespace v8 |
| 850 | 850 |
| 851 #endif // V8_BUILTINS_BUILTINS_H_ | 851 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |