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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 CPP(ObjectDefineProperties) \ | 518 CPP(ObjectDefineProperties) \ |
519 CPP(ObjectDefineProperty) \ | 519 CPP(ObjectDefineProperty) \ |
520 CPP(ObjectDefineSetter) \ | 520 CPP(ObjectDefineSetter) \ |
521 CPP(ObjectEntries) \ | 521 CPP(ObjectEntries) \ |
522 CPP(ObjectFreeze) \ | 522 CPP(ObjectFreeze) \ |
523 CPP(ObjectGetOwnPropertyDescriptor) \ | 523 CPP(ObjectGetOwnPropertyDescriptor) \ |
524 CPP(ObjectGetOwnPropertyDescriptors) \ | 524 CPP(ObjectGetOwnPropertyDescriptors) \ |
525 CPP(ObjectGetOwnPropertyNames) \ | 525 CPP(ObjectGetOwnPropertyNames) \ |
526 CPP(ObjectGetOwnPropertySymbols) \ | 526 CPP(ObjectGetOwnPropertySymbols) \ |
527 CPP(ObjectGetPrototypeOf) \ | 527 CPP(ObjectGetPrototypeOf) \ |
| 528 CPP(ObjectSetPrototypeOf) \ |
528 /* ES6 section 19.1.3.2 Object.prototype.hasOwnProperty */ \ | 529 /* ES6 section 19.1.3.2 Object.prototype.hasOwnProperty */ \ |
529 TFJ(ObjectHasOwnProperty, 2) \ | 530 TFJ(ObjectHasOwnProperty, 2) \ |
530 CPP(ObjectIs) \ | 531 CPP(ObjectIs) \ |
531 CPP(ObjectIsExtensible) \ | 532 CPP(ObjectIsExtensible) \ |
532 CPP(ObjectIsFrozen) \ | 533 CPP(ObjectIsFrozen) \ |
533 CPP(ObjectIsSealed) \ | 534 CPP(ObjectIsSealed) \ |
534 CPP(ObjectKeys) \ | 535 CPP(ObjectKeys) \ |
535 CPP(ObjectLookupGetter) \ | 536 CPP(ObjectLookupGetter) \ |
536 CPP(ObjectLookupSetter) \ | 537 CPP(ObjectLookupSetter) \ |
537 CPP(ObjectPreventExtensions) \ | 538 CPP(ObjectPreventExtensions) \ |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 | 814 |
814 friend class Isolate; | 815 friend class Isolate; |
815 | 816 |
816 DISALLOW_COPY_AND_ASSIGN(Builtins); | 817 DISALLOW_COPY_AND_ASSIGN(Builtins); |
817 }; | 818 }; |
818 | 819 |
819 } // namespace internal | 820 } // namespace internal |
820 } // namespace v8 | 821 } // namespace v8 |
821 | 822 |
822 #endif // V8_BUILTINS_BUILTINS_H_ | 823 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |