OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 145 matching lines...) Loading... |
156 "CloneShallowLiteralBoilerplate": true, | 156 "CloneShallowLiteralBoilerplate": true, |
157 "CreateArrayLiteralBoilerplate": true, | 157 "CreateArrayLiteralBoilerplate": true, |
158 "IS_VAR": true, | 158 "IS_VAR": true, |
159 "ResolvePossiblyDirectEval": true, | 159 "ResolvePossiblyDirectEval": true, |
160 "Log": true, | 160 "Log": true, |
161 "DeclareGlobals": true, | 161 "DeclareGlobals": true, |
162 | 162 |
163 "PromoteScheduledException": true, | 163 "PromoteScheduledException": true, |
164 "DeleteHandleScopeExtensions": true, | 164 "DeleteHandleScopeExtensions": true, |
165 | 165 |
| 166 // Vararg with minimum number > 0. |
| 167 "Call": true, |
| 168 |
166 // Requires integer arguments to be non-negative. | 169 // Requires integer arguments to be non-negative. |
167 "Apply": true, | 170 "Apply": true, |
168 | 171 |
169 // That can only be invoked on Array.prototype. | 172 // That can only be invoked on Array.prototype. |
170 "FinishArrayPrototypeSetup": true, | 173 "FinishArrayPrototypeSetup": true, |
171 | 174 |
172 "_SwapElements": true, | 175 "_SwapElements": true, |
173 | 176 |
174 // Performance critical functions which cannot afford type checks. | 177 // Performance critical functions which cannot afford type checks. |
175 "_IsNativeOrStrictMode": true, | 178 "_IsNativeOrStrictMode": true, |
(...skipping 30 matching lines...) Loading... |
206 if (name in knownProblems || name in currentlyUncallable) | 209 if (name in knownProblems || name in currentlyUncallable) |
207 continue; | 210 continue; |
208 print(name); | 211 print(name); |
209 var argc = nativeInfo[1]; | 212 var argc = nativeInfo[1]; |
210 testArgumentCount(name, argc); | 213 testArgumentCount(name, argc); |
211 testArgumentTypes(name, argc); | 214 testArgumentTypes(name, argc); |
212 } | 215 } |
213 } | 216 } |
214 | 217 |
215 testNatives(); | 218 testNatives(); |
OLD | NEW |