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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 V(FunctionPrototypeBind, kNone) \ | 114 V(FunctionPrototypeBind, kNone) \ |
115 V(FunctionPrototypeToString, kNone) \ | 115 V(FunctionPrototypeToString, kNone) \ |
116 \ | 116 \ |
117 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ | 117 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ |
118 V(AsyncFunctionConstructor, kTargetAndNewTarget) \ | 118 V(AsyncFunctionConstructor, kTargetAndNewTarget) \ |
119 \ | 119 \ |
120 V(GlobalDecodeURI, kNone) \ | 120 V(GlobalDecodeURI, kNone) \ |
121 V(GlobalDecodeURIComponent, kNone) \ | 121 V(GlobalDecodeURIComponent, kNone) \ |
122 V(GlobalEncodeURI, kNone) \ | 122 V(GlobalEncodeURI, kNone) \ |
123 V(GlobalEncodeURIComponent, kNone) \ | 123 V(GlobalEncodeURIComponent, kNone) \ |
| 124 V(GlobalEscape, kNone) \ |
| 125 V(GlobalUnescape, kNone) \ |
124 \ | 126 \ |
125 V(GlobalEval, kTarget) \ | 127 V(GlobalEval, kTarget) \ |
126 \ | 128 \ |
127 V(JsonParse, kNone) \ | 129 V(JsonParse, kNone) \ |
128 V(JsonStringify, kNone) \ | 130 V(JsonStringify, kNone) \ |
129 \ | 131 \ |
130 V(MathAcos, kNone) \ | 132 V(MathAcos, kNone) \ |
131 V(MathAsin, kNone) \ | 133 V(MathAsin, kNone) \ |
132 V(MathAtan, kNone) \ | 134 V(MathAtan, kNone) \ |
133 V(MathFround, kNone) \ | 135 V(MathFround, kNone) \ |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 friend class BuiltinFunctionTable; | 707 friend class BuiltinFunctionTable; |
706 friend class Isolate; | 708 friend class Isolate; |
707 | 709 |
708 DISALLOW_COPY_AND_ASSIGN(Builtins); | 710 DISALLOW_COPY_AND_ASSIGN(Builtins); |
709 }; | 711 }; |
710 | 712 |
711 } // namespace internal | 713 } // namespace internal |
712 } // namespace v8 | 714 } // namespace v8 |
713 | 715 |
714 #endif // V8_BUILTINS_H_ | 716 #endif // V8_BUILTINS_H_ |
OLD | NEW |