OLD | NEW |
| 1 |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 2 // 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 | 3 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 4 // found in the LICENSE file. |
4 | 5 |
5 #ifndef V8_BUILTINS_H_ | 6 #ifndef V8_BUILTINS_H_ |
6 #define V8_BUILTINS_H_ | 7 #define V8_BUILTINS_H_ |
7 | 8 |
8 #include "src/base/flags.h" | 9 #include "src/base/flags.h" |
9 #include "src/handles.h" | 10 #include "src/handles.h" |
10 | 11 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 V(ReflectGet) \ | 155 V(ReflectGet) \ |
155 V(ReflectGetOwnPropertyDescriptor) \ | 156 V(ReflectGetOwnPropertyDescriptor) \ |
156 V(ReflectGetPrototypeOf) \ | 157 V(ReflectGetPrototypeOf) \ |
157 V(ReflectHas) \ | 158 V(ReflectHas) \ |
158 V(ReflectIsExtensible) \ | 159 V(ReflectIsExtensible) \ |
159 V(ReflectOwnKeys) \ | 160 V(ReflectOwnKeys) \ |
160 V(ReflectPreventExtensions) \ | 161 V(ReflectPreventExtensions) \ |
161 V(ReflectSet) \ | 162 V(ReflectSet) \ |
162 V(ReflectSetPrototypeOf) \ | 163 V(ReflectSetPrototypeOf) \ |
163 \ | 164 \ |
| 165 V(StringFromCodePoint) \ |
| 166 \ |
164 V(StringPrototypeTrim) \ | 167 V(StringPrototypeTrim) \ |
165 V(StringPrototypeTrimLeft) \ | 168 V(StringPrototypeTrimLeft) \ |
166 V(StringPrototypeTrimRight) \ | 169 V(StringPrototypeTrimRight) \ |
167 \ | 170 \ |
168 V(SymbolConstructor) \ | 171 V(SymbolConstructor) \ |
169 V(SymbolConstructor_ConstructStub) \ | 172 V(SymbolConstructor_ConstructStub) \ |
170 \ | 173 \ |
171 V(TypedArrayPrototypeBuffer) \ | 174 V(TypedArrayPrototypeBuffer) \ |
172 \ | 175 \ |
173 V(HandleApiCall) \ | 176 V(HandleApiCall) \ |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
751 friend class BuiltinFunctionTable; | 754 friend class BuiltinFunctionTable; |
752 friend class Isolate; | 755 friend class Isolate; |
753 | 756 |
754 DISALLOW_COPY_AND_ASSIGN(Builtins); | 757 DISALLOW_COPY_AND_ASSIGN(Builtins); |
755 }; | 758 }; |
756 | 759 |
757 } // namespace internal | 760 } // namespace internal |
758 } // namespace v8 | 761 } // namespace v8 |
759 | 762 |
760 #endif // V8_BUILTINS_H_ | 763 #endif // V8_BUILTINS_H_ |
OLD | NEW |