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