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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 \ | 109 \ |
110 V(FunctionConstructor, kTargetAndNewTarget) \ | 110 V(FunctionConstructor, kTargetAndNewTarget) \ |
111 V(FunctionPrototypeBind, kNone) \ | 111 V(FunctionPrototypeBind, kNone) \ |
112 V(FunctionPrototypeToString, kNone) \ | 112 V(FunctionPrototypeToString, kNone) \ |
113 V(FunctionHasInstance, kNone) \ | 113 V(FunctionHasInstance, kNone) \ |
114 \ | 114 \ |
115 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 115 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
116 \ | 116 \ |
117 V(GlobalEval, kTarget) \ | 117 V(GlobalEval, kTarget) \ |
118 \ | 118 \ |
| 119 V(MathAcos, kNone) \ |
| 120 V(MathAsin, kNone) \ |
| 121 V(MathAtan, kNone) \ |
| 122 V(MathFround, kNone) \ |
| 123 V(MathImul, kNone) \ |
| 124 \ |
119 V(ObjectAssign, kNone) \ | 125 V(ObjectAssign, kNone) \ |
120 V(ObjectCreate, kNone) \ | 126 V(ObjectCreate, kNone) \ |
121 V(ObjectFreeze, kNone) \ | 127 V(ObjectFreeze, kNone) \ |
122 V(ObjectGetOwnPropertyDescriptor, kNone) \ | 128 V(ObjectGetOwnPropertyDescriptor, kNone) \ |
123 V(ObjectGetOwnPropertyNames, kNone) \ | 129 V(ObjectGetOwnPropertyNames, kNone) \ |
124 V(ObjectGetOwnPropertySymbols, kNone) \ | 130 V(ObjectGetOwnPropertySymbols, kNone) \ |
125 V(ObjectIs, kNone) \ | 131 V(ObjectIs, kNone) \ |
126 V(ObjectIsExtensible, kNone) \ | 132 V(ObjectIsExtensible, kNone) \ |
127 V(ObjectIsFrozen, kNone) \ | 133 V(ObjectIsFrozen, kNone) \ |
128 V(ObjectIsSealed, kNone) \ | 134 V(ObjectIsSealed, kNone) \ |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 friend class BuiltinFunctionTable; | 622 friend class BuiltinFunctionTable; |
617 friend class Isolate; | 623 friend class Isolate; |
618 | 624 |
619 DISALLOW_COPY_AND_ASSIGN(Builtins); | 625 DISALLOW_COPY_AND_ASSIGN(Builtins); |
620 }; | 626 }; |
621 | 627 |
622 } // namespace internal | 628 } // namespace internal |
623 } // namespace v8 | 629 } // namespace v8 |
624 | 630 |
625 #endif // V8_BUILTINS_H_ | 631 #endif // V8_BUILTINS_H_ |
OLD | NEW |