| OLD | NEW | 
|---|
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 156 | 156 | 
| 157   "PromoteScheduledException": true, | 157   "PromoteScheduledException": true, | 
| 158   "DeleteHandleScopeExtensions": true, | 158   "DeleteHandleScopeExtensions": true, | 
| 159 | 159 | 
| 160   // That can only be invoked on Array.prototype. | 160   // That can only be invoked on Array.prototype. | 
| 161   "FinishArrayPrototypeSetup": true, | 161   "FinishArrayPrototypeSetup": true, | 
| 162 | 162 | 
| 163   // Performance critical function which cannot afford type checks. | 163   // Performance critical function which cannot afford type checks. | 
| 164   "_CallFunction": true, | 164   "_CallFunction": true, | 
| 165 | 165 | 
|  | 166   // Tries to allocate based on argument, and (correctly) throws | 
|  | 167   // out-of-memory if the request is too large. In practice, the | 
|  | 168   // size will be the number of captures of a RegExp. | 
|  | 169   "RegExpConstructResult": true, | 
|  | 170   "_RegExpConstructResult": true, | 
|  | 171 | 
| 166   // LiveEdit feature is under development currently and has fragile input. | 172   // LiveEdit feature is under development currently and has fragile input. | 
| 167   "LiveEditFindSharedFunctionInfosForScript": true, | 173   "LiveEditFindSharedFunctionInfosForScript": true, | 
| 168   "LiveEditGatherCompileInfo": true, | 174   "LiveEditGatherCompileInfo": true, | 
| 169   "LiveEditReplaceScript": true, | 175   "LiveEditReplaceScript": true, | 
| 170   "LiveEditReplaceFunctionCode": true, | 176   "LiveEditReplaceFunctionCode": true, | 
| 171   "LiveEditRelinkFunctionToScript": true, | 177   "LiveEditRelinkFunctionToScript": true, | 
| 172   "LiveEditPatchFunctionPositions": true, | 178   "LiveEditPatchFunctionPositions": true, | 
| 173   "LiveEditCheckStackActivations": true | 179   "LiveEditCheckStackActivations": true | 
| 174 }; | 180 }; | 
| 175 | 181 | 
| (...skipping 10 matching lines...) Expand all  Loading... | 
| 186     if (name in knownProblems || name in currentlyUncallable) | 192     if (name in knownProblems || name in currentlyUncallable) | 
| 187       continue; | 193       continue; | 
| 188     print(name); | 194     print(name); | 
| 189     var argc = nativeInfo[1]; | 195     var argc = nativeInfo[1]; | 
| 190     testArgumentCount(name, argc); | 196     testArgumentCount(name, argc); | 
| 191     testArgumentTypes(name, argc); | 197     testArgumentTypes(name, argc); | 
| 192   } | 198   } | 
| 193 } | 199 } | 
| 194 | 200 | 
| 195 testNatives(); | 201 testNatives(); | 
| OLD | NEW | 
|---|