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) \ |
175 V(StringPrototypeTrim, kNone) \ | 177 V(StringPrototypeTrim, kNone) \ |
176 V(StringPrototypeTrimLeft, kNone) \ | 178 V(StringPrototypeTrimLeft, kNone) \ |
177 V(StringPrototypeTrimRight, kNone) \ | 179 V(StringPrototypeTrimRight, kNone) \ |
178 \ | 180 \ |
179 V(SymbolConstructor, kNone) \ | 181 V(SymbolConstructor, kNone) \ |
180 V(SymbolConstructor_ConstructStub, kTarget) \ | 182 V(SymbolConstructor_ConstructStub, kTarget) \ |
181 \ | 183 \ |
182 V(HandleApiCall, kTargetAndNewTarget) \ | 184 V(HandleApiCall, kTargetAndNewTarget) \ |
183 V(HandleApiCallAsFunction, kNone) \ | 185 V(HandleApiCallAsFunction, kNone) \ |
184 V(HandleApiCallAsConstructor, kNone) \ | 186 V(HandleApiCallAsConstructor, kNone) \ |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 friend class BuiltinFunctionTable; | 703 friend class BuiltinFunctionTable; |
702 friend class Isolate; | 704 friend class Isolate; |
703 | 705 |
704 DISALLOW_COPY_AND_ASSIGN(Builtins); | 706 DISALLOW_COPY_AND_ASSIGN(Builtins); |
705 }; | 707 }; |
706 | 708 |
707 } // namespace internal | 709 } // namespace internal |
708 } // namespace v8 | 710 } // namespace v8 |
709 | 711 |
710 #endif // V8_BUILTINS_H_ | 712 #endif // V8_BUILTINS_H_ |
OLD | NEW |