| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 // to unexpected integer values. | 100 // to unexpected integer values. |
| 101 "DebugEvaluate": true, | 101 "DebugEvaluate": true, |
| 102 | 102 |
| 103 // These functions do nontrivial error checking in recursive calls, | 103 // These functions do nontrivial error checking in recursive calls, |
| 104 // which means that we have to propagate errors back. | 104 // which means that we have to propagate errors back. |
| 105 "SetFunctionBreakPoint": true, | 105 "SetFunctionBreakPoint": true, |
| 106 "SetScriptBreakPoint": true, | 106 "SetScriptBreakPoint": true, |
| 107 "ChangeBreakOnException": true, | 107 "ChangeBreakOnException": true, |
| 108 "PrepareStep": true, | 108 "PrepareStep": true, |
| 109 | 109 |
| 110 // Too slow. |
| 111 "DebugReferencedBy": true, |
| 112 |
| 110 // Calling disable/enable access checks may interfere with the | 113 // Calling disable/enable access checks may interfere with the |
| 111 // the rest of the tests. | 114 // the rest of the tests. |
| 112 "DisableAccessChecks": true, | 115 "DisableAccessChecks": true, |
| 113 "EnableAccessChecks": true, | 116 "EnableAccessChecks": true, |
| 114 | 117 |
| 115 // These functions should not be callable as runtime functions. | 118 // These functions should not be callable as runtime functions. |
| 116 "NewContext": true, | 119 "NewContext": true, |
| 117 "NewArgumentsFast": true, | 120 "NewArgumentsFast": true, |
| 118 "PushContext": true, | 121 "PushContext": true, |
| 119 "LazyCompile": true, | 122 "LazyCompile": true, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 135 if (name in knownProblems || name in currentlyUncallable) | 138 if (name in knownProblems || name in currentlyUncallable) |
| 136 continue; | 139 continue; |
| 137 print(name); | 140 print(name); |
| 138 var argc = nativeInfo[1]; | 141 var argc = nativeInfo[1]; |
| 139 testArgumentCount(name); | 142 testArgumentCount(name); |
| 140 testArgumentTypes(name, argc); | 143 testArgumentTypes(name, argc); |
| 141 } | 144 } |
| 142 } | 145 } |
| 143 | 146 |
| 144 testNatives(); | 147 testNatives(); |
| OLD | NEW |