| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 V(ReflectGet, kNone) \ | 142 V(ReflectGet, kNone) \ |
| 143 V(ReflectGetOwnPropertyDescriptor, kNone) \ | 143 V(ReflectGetOwnPropertyDescriptor, kNone) \ |
| 144 V(ReflectGetPrototypeOf, kNone) \ | 144 V(ReflectGetPrototypeOf, kNone) \ |
| 145 V(ReflectHas, kNone) \ | 145 V(ReflectHas, kNone) \ |
| 146 V(ReflectIsExtensible, kNone) \ | 146 V(ReflectIsExtensible, kNone) \ |
| 147 V(ReflectOwnKeys, kNone) \ | 147 V(ReflectOwnKeys, kNone) \ |
| 148 V(ReflectPreventExtensions, kNone) \ | 148 V(ReflectPreventExtensions, kNone) \ |
| 149 V(ReflectSet, kNone) \ | 149 V(ReflectSet, kNone) \ |
| 150 V(ReflectSetPrototypeOf, kNone) \ | 150 V(ReflectSetPrototypeOf, kNone) \ |
| 151 \ | 151 \ |
| 152 V(StringFromCharCode, kNone) \ |
| 153 \ |
| 152 V(SymbolConstructor, kNone) \ | 154 V(SymbolConstructor, kNone) \ |
| 153 V(SymbolConstructor_ConstructStub, kTarget) \ | 155 V(SymbolConstructor_ConstructStub, kTarget) \ |
| 154 \ | 156 \ |
| 155 V(HandleApiCall, kTarget) \ | 157 V(HandleApiCall, kTarget) \ |
| 156 V(HandleApiCallConstruct, kTarget) \ | 158 V(HandleApiCallConstruct, kTarget) \ |
| 157 V(HandleApiCallAsFunction, kNone) \ | 159 V(HandleApiCallAsFunction, kNone) \ |
| 158 V(HandleApiCallAsConstructor, kNone) \ | 160 V(HandleApiCallAsConstructor, kNone) \ |
| 159 \ | 161 \ |
| 160 V(RestrictedFunctionPropertiesThrower, kNone) \ | 162 V(RestrictedFunctionPropertiesThrower, kNone) \ |
| 161 V(RestrictedStrictArgumentsPropertiesThrower, kNone) | 163 V(RestrictedStrictArgumentsPropertiesThrower, kNone) |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 friend class BuiltinFunctionTable; | 618 friend class BuiltinFunctionTable; |
| 617 friend class Isolate; | 619 friend class Isolate; |
| 618 | 620 |
| 619 DISALLOW_COPY_AND_ASSIGN(Builtins); | 621 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 620 }; | 622 }; |
| 621 | 623 |
| 622 } // namespace internal | 624 } // namespace internal |
| 623 } // namespace v8 | 625 } // namespace v8 |
| 624 | 626 |
| 625 #endif // V8_BUILTINS_H_ | 627 #endif // V8_BUILTINS_H_ |
| OLD | NEW |