| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "ResolvePossiblyDirectEval": true, | 153 "ResolvePossiblyDirectEval": true, |
| 154 "Log": true, | 154 "Log": true, |
| 155 "DeclareGlobals": true, | 155 "DeclareGlobals": true, |
| 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. |
| 164 "_CallFunction": true, |
| 165 |
| 163 // LiveEdit feature is under development currently and has fragile input. | 166 // LiveEdit feature is under development currently and has fragile input. |
| 164 "LiveEditFindSharedFunctionInfosForScript": true, | 167 "LiveEditFindSharedFunctionInfosForScript": true, |
| 165 "LiveEditGatherCompileInfo": true, | 168 "LiveEditGatherCompileInfo": true, |
| 166 "LiveEditReplaceScript": true, | 169 "LiveEditReplaceScript": true, |
| 167 "LiveEditReplaceFunctionCode": true, | 170 "LiveEditReplaceFunctionCode": true, |
| 168 "LiveEditRelinkFunctionToScript": true, | 171 "LiveEditRelinkFunctionToScript": true, |
| 169 "LiveEditPatchFunctionPositions": true, | 172 "LiveEditPatchFunctionPositions": true, |
| 170 "LiveEditCheckStackActivations": true | 173 "LiveEditCheckStackActivations": true |
| 171 }; | 174 }; |
| 172 | 175 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 183 if (name in knownProblems || name in currentlyUncallable) | 186 if (name in knownProblems || name in currentlyUncallable) |
| 184 continue; | 187 continue; |
| 185 print(name); | 188 print(name); |
| 186 var argc = nativeInfo[1]; | 189 var argc = nativeInfo[1]; |
| 187 testArgumentCount(name, argc); | 190 testArgumentCount(name, argc); |
| 188 testArgumentTypes(name, argc); | 191 testArgumentTypes(name, argc); |
| 189 } | 192 } |
| 190 } | 193 } |
| 191 | 194 |
| 192 testNatives(); | 195 testNatives(); |
| OLD | NEW |