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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 V(DatePrototypeToUTCString, kNone) \ | 95 V(DatePrototypeToUTCString, kNone) \ |
96 V(DatePrototypeToString, kNone) \ | 96 V(DatePrototypeToString, kNone) \ |
97 V(DatePrototypeToTimeString, kNone) \ | 97 V(DatePrototypeToTimeString, kNone) \ |
98 V(DatePrototypeValueOf, kNone) \ | 98 V(DatePrototypeValueOf, kNone) \ |
99 V(DatePrototypeGetYear, kNone) \ | 99 V(DatePrototypeGetYear, kNone) \ |
100 V(DatePrototypeSetYear, kNone) \ | 100 V(DatePrototypeSetYear, kNone) \ |
101 \ | 101 \ |
102 V(FunctionConstructor, kTargetAndNewTarget) \ | 102 V(FunctionConstructor, kTargetAndNewTarget) \ |
103 V(FunctionPrototypeBind, kNone) \ | 103 V(FunctionPrototypeBind, kNone) \ |
104 V(FunctionPrototypeToString, kNone) \ | 104 V(FunctionPrototypeToString, kNone) \ |
| 105 V(FunctionHasInstance, kNone) \ |
105 \ | 106 \ |
106 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 107 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
107 \ | 108 \ |
108 V(GlobalEval, kTarget) \ | 109 V(GlobalEval, kTarget) \ |
109 \ | 110 \ |
110 V(ObjectAssign, kNone) \ | 111 V(ObjectAssign, kNone) \ |
111 V(ObjectCreate, kNone) \ | 112 V(ObjectCreate, kNone) \ |
112 V(ObjectFreeze, kNone) \ | 113 V(ObjectFreeze, kNone) \ |
113 V(ObjectGetOwnPropertyDescriptor, kNone) \ | 114 V(ObjectGetOwnPropertyDescriptor, kNone) \ |
114 V(ObjectGetOwnPropertyNames, kNone) \ | 115 V(ObjectGetOwnPropertyNames, kNone) \ |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 friend class BuiltinFunctionTable; | 603 friend class BuiltinFunctionTable; |
603 friend class Isolate; | 604 friend class Isolate; |
604 | 605 |
605 DISALLOW_COPY_AND_ASSIGN(Builtins); | 606 DISALLOW_COPY_AND_ASSIGN(Builtins); |
606 }; | 607 }; |
607 | 608 |
608 } // namespace internal | 609 } // namespace internal |
609 } // namespace v8 | 610 } // namespace v8 |
610 | 611 |
611 #endif // V8_BUILTINS_H_ | 612 #endif // V8_BUILTINS_H_ |
OLD | NEW |