| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "_GetCachedArrayIndex": true | 198 "_GetCachedArrayIndex": true |
| 199 }; | 199 }; |
| 200 | 200 |
| 201 var currentlyUncallable = { | 201 var currentlyUncallable = { |
| 202 // We need to find a way to test this without breaking the system. | 202 // We need to find a way to test this without breaking the system. |
| 203 "SystemBreak": true | 203 "SystemBreak": true |
| 204 }; | 204 }; |
| 205 | 205 |
| 206 function testNatives() { | 206 function testNatives() { |
| 207 var allNatives = %ListNatives(); | 207 var allNatives = %ListNatives(); |
| 208 for (var i = 0; i < allNatives.length; i++) { | 208 var start = (allNatives.length >> 2)*2; |
| 209 var stop = (allNatives.length >> 2)*3; |
| 210 for (var i = start; i < stop; i++) { |
| 209 var nativeInfo = allNatives[i]; | 211 var nativeInfo = allNatives[i]; |
| 210 var name = nativeInfo[0]; | 212 var name = nativeInfo[0]; |
| 211 if (name in knownProblems || name in currentlyUncallable) | 213 if (name in knownProblems || name in currentlyUncallable) |
| 212 continue; | 214 continue; |
| 213 print(name); | 215 print(name); |
| 214 var argc = nativeInfo[1]; | 216 var argc = nativeInfo[1]; |
| 215 testArgumentCount(name, argc); | 217 testArgumentCount(name, argc); |
| 216 testArgumentTypes(name, argc); | 218 testArgumentTypes(name, argc); |
| 217 } | 219 } |
| 218 } | 220 } |
| 219 | 221 |
| 220 testNatives(); | 222 testNatives(); |
| OLD | NEW |