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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 85 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
86 \ | 86 \ |
87 V(GlobalEval, kTarget) \ | 87 V(GlobalEval, kTarget) \ |
88 \ | 88 \ |
89 V(ObjectAssign, kNone) \ | 89 V(ObjectAssign, kNone) \ |
90 V(ObjectCreate, kNone) \ | 90 V(ObjectCreate, kNone) \ |
91 V(ObjectFreeze, kNone) \ | 91 V(ObjectFreeze, kNone) \ |
92 V(ObjectIsExtensible, kNone) \ | 92 V(ObjectIsExtensible, kNone) \ |
93 V(ObjectIsFrozen, kNone) \ | 93 V(ObjectIsFrozen, kNone) \ |
94 V(ObjectIsSealed, kNone) \ | 94 V(ObjectIsSealed, kNone) \ |
| 95 V(ObjectKeys, kNone) \ |
95 V(ObjectPreventExtensions, kNone) \ | 96 V(ObjectPreventExtensions, kNone) \ |
96 V(ObjectSeal, kNone) \ | 97 V(ObjectSeal, kNone) \ |
97 V(ObjectProtoToString, kNone) \ | 98 V(ObjectProtoToString, kNone) \ |
98 \ | 99 \ |
99 V(ProxyConstructor, kNone) \ | 100 V(ProxyConstructor, kNone) \ |
100 V(ProxyConstructor_ConstructStub, kTarget) \ | 101 V(ProxyConstructor_ConstructStub, kTarget) \ |
101 \ | 102 \ |
102 V(ReflectDefineProperty, kNone) \ | 103 V(ReflectDefineProperty, kNone) \ |
103 V(ReflectDeleteProperty, kNone) \ | 104 V(ReflectDeleteProperty, kNone) \ |
104 V(ReflectGet, kNone) \ | 105 V(ReflectGet, kNone) \ |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 friend class BuiltinFunctionTable; | 432 friend class BuiltinFunctionTable; |
432 friend class Isolate; | 433 friend class Isolate; |
433 | 434 |
434 DISALLOW_COPY_AND_ASSIGN(Builtins); | 435 DISALLOW_COPY_AND_ASSIGN(Builtins); |
435 }; | 436 }; |
436 | 437 |
437 } // namespace internal | 438 } // namespace internal |
438 } // namespace v8 | 439 } // namespace v8 |
439 | 440 |
440 #endif // V8_BUILTINS_H_ | 441 #endif // V8_BUILTINS_H_ |
OLD | NEW |