| OLD | NEW |
| 1 | 1 |
| 2 // Copyright 2011 the V8 project authors. All rights reserved. | 2 // Copyright 2011 the V8 project authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 5 | 5 |
| 6 #ifndef V8_BUILTINS_H_ | 6 #ifndef V8_BUILTINS_H_ |
| 7 #define V8_BUILTINS_H_ | 7 #define V8_BUILTINS_H_ |
| 8 | 8 |
| 9 #include "src/base/flags.h" | 9 #include "src/base/flags.h" |
| 10 #include "src/handles.h" | 10 #include "src/handles.h" |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 V(ObjectGetOwnPropertySymbols, BUILTIN_EXIT) \ | 138 V(ObjectGetOwnPropertySymbols, BUILTIN_EXIT) \ |
| 139 V(ObjectGetPrototypeOf, BUILTIN_EXIT) \ | 139 V(ObjectGetPrototypeOf, BUILTIN_EXIT) \ |
| 140 V(ObjectIs, BUILTIN_EXIT) \ | 140 V(ObjectIs, BUILTIN_EXIT) \ |
| 141 V(ObjectIsExtensible, BUILTIN_EXIT) \ | 141 V(ObjectIsExtensible, BUILTIN_EXIT) \ |
| 142 V(ObjectIsFrozen, BUILTIN_EXIT) \ | 142 V(ObjectIsFrozen, BUILTIN_EXIT) \ |
| 143 V(ObjectIsSealed, BUILTIN_EXIT) \ | 143 V(ObjectIsSealed, BUILTIN_EXIT) \ |
| 144 V(ObjectKeys, BUILTIN_EXIT) \ | 144 V(ObjectKeys, BUILTIN_EXIT) \ |
| 145 V(ObjectLookupGetter, BUILTIN_EXIT) \ | 145 V(ObjectLookupGetter, BUILTIN_EXIT) \ |
| 146 V(ObjectLookupSetter, BUILTIN_EXIT) \ | 146 V(ObjectLookupSetter, BUILTIN_EXIT) \ |
| 147 V(ObjectPreventExtensions, BUILTIN_EXIT) \ | 147 V(ObjectPreventExtensions, BUILTIN_EXIT) \ |
| 148 V(ObjectPrototypePropertyIsEnumerable, BUILTIN_EXIT) \ |
| 148 V(ObjectProtoToString, BUILTIN_EXIT) \ | 149 V(ObjectProtoToString, BUILTIN_EXIT) \ |
| 149 V(ObjectSeal, BUILTIN_EXIT) \ | 150 V(ObjectSeal, BUILTIN_EXIT) \ |
| 150 V(ObjectValues, BUILTIN_EXIT) \ | 151 V(ObjectValues, BUILTIN_EXIT) \ |
| 151 \ | 152 \ |
| 152 V(ProxyConstructor, BUILTIN_EXIT) \ | 153 V(ProxyConstructor, BUILTIN_EXIT) \ |
| 153 V(ProxyConstructor_ConstructStub, BUILTIN_EXIT) \ | 154 V(ProxyConstructor_ConstructStub, BUILTIN_EXIT) \ |
| 154 \ | 155 \ |
| 155 V(ReflectDefineProperty, BUILTIN_EXIT) \ | 156 V(ReflectDefineProperty, BUILTIN_EXIT) \ |
| 156 V(ReflectDeleteProperty, BUILTIN_EXIT) \ | 157 V(ReflectDeleteProperty, BUILTIN_EXIT) \ |
| 157 V(ReflectGet, BUILTIN_EXIT) \ | 158 V(ReflectGet, BUILTIN_EXIT) \ |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 825 friend class BuiltinFunctionTable; | 826 friend class BuiltinFunctionTable; |
| 826 friend class Isolate; | 827 friend class Isolate; |
| 827 | 828 |
| 828 DISALLOW_COPY_AND_ASSIGN(Builtins); | 829 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 829 }; | 830 }; |
| 830 | 831 |
| 831 } // namespace internal | 832 } // namespace internal |
| 832 } // namespace v8 | 833 } // namespace v8 |
| 833 | 834 |
| 834 #endif // V8_BUILTINS_H_ | 835 #endif // V8_BUILTINS_H_ |
| OLD | NEW |