| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 V(DatePrototypeValueOf, kNone) \ | 108 V(DatePrototypeValueOf, kNone) \ |
| 109 V(DatePrototypeGetYear, kNone) \ | 109 V(DatePrototypeGetYear, kNone) \ |
| 110 V(DatePrototypeSetYear, kNone) \ | 110 V(DatePrototypeSetYear, kNone) \ |
| 111 \ | 111 \ |
| 112 V(FunctionConstructor, kTargetAndNewTarget) \ | 112 V(FunctionConstructor, kTargetAndNewTarget) \ |
| 113 V(FunctionPrototypeBind, kNone) \ | 113 V(FunctionPrototypeBind, kNone) \ |
| 114 V(FunctionPrototypeToString, kNone) \ | 114 V(FunctionPrototypeToString, kNone) \ |
| 115 \ | 115 \ |
| 116 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 116 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
| 117 \ | 117 \ |
| 118 V(GlobalEncodeURI, kNone) \ |
| 119 V(GlobalEncodeURIComponent, kNone) \ |
| 120 \ |
| 118 V(GlobalEval, kTarget) \ | 121 V(GlobalEval, kTarget) \ |
| 119 \ | 122 \ |
| 120 V(MathAcos, kNone) \ | 123 V(MathAcos, kNone) \ |
| 121 V(MathAsin, kNone) \ | 124 V(MathAsin, kNone) \ |
| 122 V(MathAtan, kNone) \ | 125 V(MathAtan, kNone) \ |
| 123 V(MathFround, kNone) \ | 126 V(MathFround, kNone) \ |
| 124 V(MathImul, kNone) \ | 127 V(MathImul, kNone) \ |
| 125 \ | 128 \ |
| 126 V(ObjectAssign, kNone) \ | 129 V(ObjectAssign, kNone) \ |
| 127 V(ObjectCreate, kNone) \ | 130 V(ObjectCreate, kNone) \ |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 friend class BuiltinFunctionTable; | 694 friend class BuiltinFunctionTable; |
| 692 friend class Isolate; | 695 friend class Isolate; |
| 693 | 696 |
| 694 DISALLOW_COPY_AND_ASSIGN(Builtins); | 697 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 695 }; | 698 }; |
| 696 | 699 |
| 697 } // namespace internal | 700 } // namespace internal |
| 698 } // namespace v8 | 701 } // namespace v8 |
| 699 | 702 |
| 700 #endif // V8_BUILTINS_H_ | 703 #endif // V8_BUILTINS_H_ |
| OLD | NEW |