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_H_ | 5 #ifndef V8_BUILTINS_H_ |
6 #define V8_BUILTINS_H_ | 6 #define V8_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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 V(FunctionPrototypeBind, kNone) \ | 103 V(FunctionPrototypeBind, kNone) \ |
104 V(FunctionPrototypeToString, kNone) \ | 104 V(FunctionPrototypeToString, kNone) \ |
105 \ | 105 \ |
106 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 106 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
107 \ | 107 \ |
108 V(GlobalEval, kTarget) \ | 108 V(GlobalEval, kTarget) \ |
109 \ | 109 \ |
110 V(ObjectAssign, kNone) \ | 110 V(ObjectAssign, kNone) \ |
111 V(ObjectCreate, kNone) \ | 111 V(ObjectCreate, kNone) \ |
112 V(ObjectFreeze, kNone) \ | 112 V(ObjectFreeze, kNone) \ |
| 113 V(ObjectGetOwnPropertyDescriptor, kNone) \ |
113 V(ObjectGetOwnPropertyNames, kNone) \ | 114 V(ObjectGetOwnPropertyNames, kNone) \ |
114 V(ObjectGetOwnPropertySymbols, kNone) \ | 115 V(ObjectGetOwnPropertySymbols, kNone) \ |
115 V(ObjectIsExtensible, kNone) \ | 116 V(ObjectIsExtensible, kNone) \ |
116 V(ObjectIsFrozen, kNone) \ | 117 V(ObjectIsFrozen, kNone) \ |
117 V(ObjectIsSealed, kNone) \ | 118 V(ObjectIsSealed, kNone) \ |
118 V(ObjectKeys, kNone) \ | 119 V(ObjectKeys, kNone) \ |
119 V(ObjectValues, kNone) \ | 120 V(ObjectValues, kNone) \ |
120 V(ObjectEntries, kNone) \ | 121 V(ObjectEntries, kNone) \ |
121 V(ObjectPreventExtensions, kNone) \ | 122 V(ObjectPreventExtensions, kNone) \ |
122 V(ObjectSeal, kNone) \ | 123 V(ObjectSeal, kNone) \ |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
600 friend class BuiltinFunctionTable; | 601 friend class BuiltinFunctionTable; |
601 friend class Isolate; | 602 friend class Isolate; |
602 | 603 |
603 DISALLOW_COPY_AND_ASSIGN(Builtins); | 604 DISALLOW_COPY_AND_ASSIGN(Builtins); |
604 }; | 605 }; |
605 | 606 |
606 } // namespace internal | 607 } // namespace internal |
607 } // namespace v8 | 608 } // namespace v8 |
608 | 609 |
609 #endif // V8_BUILTINS_H_ | 610 #endif // V8_BUILTINS_H_ |
OLD | NEW |