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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 V(ArrayIsArray, kNone) \ | 60 V(ArrayIsArray, kNone) \ |
61 V(ArrayPop, kNone) \ | 61 V(ArrayPop, kNone) \ |
62 V(ArrayPush, kNone) \ | 62 V(ArrayPush, kNone) \ |
63 V(ArrayShift, kNone) \ | 63 V(ArrayShift, kNone) \ |
64 V(ArraySlice, kNone) \ | 64 V(ArraySlice, kNone) \ |
65 V(ArraySplice, kNone) \ | 65 V(ArraySplice, kNone) \ |
66 V(ArrayUnshift, kNone) \ | 66 V(ArrayUnshift, kNone) \ |
67 \ | 67 \ |
68 V(DateToPrimitive, kNone) \ | 68 V(DateToPrimitive, kNone) \ |
69 \ | 69 \ |
| 70 V(ObjectAssign, kNone) \ |
| 71 \ |
70 V(ProxyConstructor, kNone) \ | 72 V(ProxyConstructor, kNone) \ |
71 V(ProxyConstructor_ConstructStub, kTarget) \ | 73 V(ProxyConstructor_ConstructStub, kTarget) \ |
72 \ | 74 \ |
73 V(ReflectDefineProperty, kNone) \ | 75 V(ReflectDefineProperty, kNone) \ |
74 V(ReflectDeleteProperty, kNone) \ | 76 V(ReflectDeleteProperty, kNone) \ |
75 V(ReflectGet, kNone) \ | 77 V(ReflectGet, kNone) \ |
76 V(ReflectGetOwnPropertyDescriptor, kNone) \ | 78 V(ReflectGetOwnPropertyDescriptor, kNone) \ |
77 V(ReflectGetPrototypeOf, kNone) \ | 79 V(ReflectGetPrototypeOf, kNone) \ |
78 V(ReflectHas, kNone) \ | 80 V(ReflectHas, kNone) \ |
79 V(ReflectIsExtensible, kNone) \ | 81 V(ReflectIsExtensible, kNone) \ |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 friend class BuiltinFunctionTable; | 388 friend class BuiltinFunctionTable; |
387 friend class Isolate; | 389 friend class Isolate; |
388 | 390 |
389 DISALLOW_COPY_AND_ASSIGN(Builtins); | 391 DISALLOW_COPY_AND_ASSIGN(Builtins); |
390 }; | 392 }; |
391 | 393 |
392 } // namespace internal | 394 } // namespace internal |
393 } // namespace v8 | 395 } // namespace v8 |
394 | 396 |
395 #endif // V8_BUILTINS_H_ | 397 #endif // V8_BUILTINS_H_ |
OLD | NEW |