| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(ObjectGetOwnPropertyNames, kNone) \ | 113 V(ObjectGetOwnPropertyNames, kNone) \ |
| 114 V(ObjectGetOwnPropertySymbols, kNone) \ | 114 V(ObjectGetOwnPropertySymbols, kNone) \ |
| 115 V(ObjectIsExtensible, kNone) \ | 115 V(ObjectIsExtensible, kNone) \ |
| 116 V(ObjectIsFrozen, kNone) \ | 116 V(ObjectIsFrozen, kNone) \ |
| 117 V(ObjectIsSealed, kNone) \ | 117 V(ObjectIsSealed, kNone) \ |
| 118 V(ObjectKeys, kNone) \ | 118 V(ObjectKeys, kNone) \ |
| 119 V(ObjectValues, kNone) \ |
| 120 V(ObjectEntries, kNone) \ |
| 119 V(ObjectPreventExtensions, kNone) \ | 121 V(ObjectPreventExtensions, kNone) \ |
| 120 V(ObjectSeal, kNone) \ | 122 V(ObjectSeal, kNone) \ |
| 121 V(ObjectProtoToString, kNone) \ | 123 V(ObjectProtoToString, kNone) \ |
| 122 \ | 124 \ |
| 123 V(ProxyConstructor, kNone) \ | 125 V(ProxyConstructor, kNone) \ |
| 124 V(ProxyConstructor_ConstructStub, kTarget) \ | 126 V(ProxyConstructor_ConstructStub, kTarget) \ |
| 125 \ | 127 \ |
| 126 V(ReflectDefineProperty, kNone) \ | 128 V(ReflectDefineProperty, kNone) \ |
| 127 V(ReflectDeleteProperty, kNone) \ | 129 V(ReflectDeleteProperty, kNone) \ |
| 128 V(ReflectGet, kNone) \ | 130 V(ReflectGet, kNone) \ |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 friend class BuiltinFunctionTable; | 530 friend class BuiltinFunctionTable; |
| 529 friend class Isolate; | 531 friend class Isolate; |
| 530 | 532 |
| 531 DISALLOW_COPY_AND_ASSIGN(Builtins); | 533 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 532 }; | 534 }; |
| 533 | 535 |
| 534 } // namespace internal | 536 } // namespace internal |
| 535 } // namespace v8 | 537 } // namespace v8 |
| 536 | 538 |
| 537 #endif // V8_BUILTINS_H_ | 539 #endif // V8_BUILTINS_H_ |
| OLD | NEW |