| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 V(ReflectGetOwnPropertyDescriptor, kNone) \ | 165 V(ReflectGetOwnPropertyDescriptor, kNone) \ |
| 166 V(ReflectGetPrototypeOf, kNone) \ | 166 V(ReflectGetPrototypeOf, kNone) \ |
| 167 V(ReflectHas, kNone) \ | 167 V(ReflectHas, kNone) \ |
| 168 V(ReflectIsExtensible, kNone) \ | 168 V(ReflectIsExtensible, kNone) \ |
| 169 V(ReflectOwnKeys, kNone) \ | 169 V(ReflectOwnKeys, kNone) \ |
| 170 V(ReflectPreventExtensions, kNone) \ | 170 V(ReflectPreventExtensions, kNone) \ |
| 171 V(ReflectSet, kNone) \ | 171 V(ReflectSet, kNone) \ |
| 172 V(ReflectSetPrototypeOf, kNone) \ | 172 V(ReflectSetPrototypeOf, kNone) \ |
| 173 \ | 173 \ |
| 174 V(StringFromCharCode, kNone) \ | 174 V(StringFromCharCode, kNone) \ |
| 175 V(StringPrototypeToLowerCase, kNone) \ | |
| 176 V(StringPrototypeToUpperCase, kNone) \ | |
| 177 V(StringPrototypeTrim, kNone) \ | 175 V(StringPrototypeTrim, kNone) \ |
| 178 V(StringPrototypeTrimLeft, kNone) \ | 176 V(StringPrototypeTrimLeft, kNone) \ |
| 179 V(StringPrototypeTrimRight, kNone) \ | 177 V(StringPrototypeTrimRight, kNone) \ |
| 180 \ | 178 \ |
| 181 V(SymbolConstructor, kNone) \ | 179 V(SymbolConstructor, kNone) \ |
| 182 V(SymbolConstructor_ConstructStub, kTarget) \ | 180 V(SymbolConstructor_ConstructStub, kTarget) \ |
| 183 \ | 181 \ |
| 184 V(HandleApiCall, kTargetAndNewTarget) \ | 182 V(HandleApiCall, kTargetAndNewTarget) \ |
| 185 V(HandleApiCallAsFunction, kNone) \ | 183 V(HandleApiCallAsFunction, kNone) \ |
| 186 V(HandleApiCallAsConstructor, kNone) \ | 184 V(HandleApiCallAsConstructor, kNone) \ |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 friend class BuiltinFunctionTable; | 701 friend class BuiltinFunctionTable; |
| 704 friend class Isolate; | 702 friend class Isolate; |
| 705 | 703 |
| 706 DISALLOW_COPY_AND_ASSIGN(Builtins); | 704 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 707 }; | 705 }; |
| 708 | 706 |
| 709 } // namespace internal | 707 } // namespace internal |
| 710 } // namespace v8 | 708 } // namespace v8 |
| 711 | 709 |
| 712 #endif // V8_BUILTINS_H_ | 710 #endif // V8_BUILTINS_H_ |
| OLD | NEW |