| 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) \ | |
| 106 \ | 105 \ |
| 107 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 106 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
| 108 \ | 107 \ |
| 109 V(GlobalEval, kTarget) \ | 108 V(GlobalEval, kTarget) \ |
| 110 \ | 109 \ |
| 111 V(ObjectAssign, kNone) \ | 110 V(ObjectAssign, kNone) \ |
| 112 V(ObjectCreate, kNone) \ | 111 V(ObjectCreate, kNone) \ |
| 113 V(ObjectFreeze, kNone) \ | 112 V(ObjectFreeze, kNone) \ |
| 114 V(ObjectGetOwnPropertyDescriptor, kNone) \ | 113 V(ObjectGetOwnPropertyDescriptor, kNone) \ |
| 115 V(ObjectGetOwnPropertyNames, kNone) \ | 114 V(ObjectGetOwnPropertyNames, kNone) \ |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 friend class BuiltinFunctionTable; | 602 friend class BuiltinFunctionTable; |
| 604 friend class Isolate; | 603 friend class Isolate; |
| 605 | 604 |
| 606 DISALLOW_COPY_AND_ASSIGN(Builtins); | 605 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 607 }; | 606 }; |
| 608 | 607 |
| 609 } // namespace internal | 608 } // namespace internal |
| 610 } // namespace v8 | 609 } // namespace v8 |
| 611 | 610 |
| 612 #endif // V8_BUILTINS_H_ | 611 #endif // V8_BUILTINS_H_ |
| OLD | NEW |