| 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 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 V(AsyncFunctionConstructor, kTargetAndNewTarget) \ | 117 V(AsyncFunctionConstructor, kTargetAndNewTarget) \ |
| 118 \ | 118 \ |
| 119 V(GlobalDecodeURI, kNone) \ |
| 120 V(GlobalDecodeURIComponent, kNone) \ |
| 119 V(GlobalEncodeURI, kNone) \ | 121 V(GlobalEncodeURI, kNone) \ |
| 120 V(GlobalEncodeURIComponent, kNone) \ | 122 V(GlobalEncodeURIComponent, kNone) \ |
| 121 \ | 123 \ |
| 122 V(GlobalEval, kTarget) \ | 124 V(GlobalEval, kTarget) \ |
| 123 \ | 125 \ |
| 124 V(JsonStringify, kNone) \ | 126 V(JsonStringify, kNone) \ |
| 125 \ | 127 \ |
| 126 V(MathAcos, kNone) \ | 128 V(MathAcos, kNone) \ |
| 127 V(MathAsin, kNone) \ | 129 V(MathAsin, kNone) \ |
| 128 V(MathAtan, kNone) \ | 130 V(MathAtan, kNone) \ |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 friend class BuiltinFunctionTable; | 698 friend class BuiltinFunctionTable; |
| 697 friend class Isolate; | 699 friend class Isolate; |
| 698 | 700 |
| 699 DISALLOW_COPY_AND_ASSIGN(Builtins); | 701 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 700 }; | 702 }; |
| 701 | 703 |
| 702 } // namespace internal | 704 } // namespace internal |
| 703 } // namespace v8 | 705 } // namespace v8 |
| 704 | 706 |
| 705 #endif // V8_BUILTINS_H_ | 707 #endif // V8_BUILTINS_H_ |
| OLD | NEW |