| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 // These functions use pseudo-stack-pointers and are not robust | 99 // These functions use pseudo-stack-pointers and are not robust |
| 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 |
| 110 // Calling disable/enable access checks may interfere with the |
| 111 // the rest of the tests. |
| 112 "DisableAccessChecks": true, |
| 113 "EnableAccessChecks": true, |
| 109 | 114 |
| 110 // These functions should not be callable as runtime functions. | 115 // These functions should not be callable as runtime functions. |
| 111 "NewContext": true, | 116 "NewContext": true, |
| 112 "NewArgumentsFast": true, | 117 "NewArgumentsFast": true, |
| 113 "PushContext": true, | 118 "PushContext": true, |
| 114 "LazyCompile": true, | 119 "LazyCompile": true, |
| 115 "CreateObjectLiteralBoilerplate": true, | 120 "CreateObjectLiteralBoilerplate": true, |
| 116 "CloneObjectLiteralBoilerplate": true, | 121 "CloneObjectLiteralBoilerplate": true, |
| 117 "IS_VAR": true | 122 "IS_VAR": true |
| 118 }; | 123 }; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 130 if (name in knownProblems || name in currentlyUncallable) | 135 if (name in knownProblems || name in currentlyUncallable) |
| 131 continue; | 136 continue; |
| 132 print(name); | 137 print(name); |
| 133 var argc = nativeInfo[1]; | 138 var argc = nativeInfo[1]; |
| 134 testArgumentCount(name); | 139 testArgumentCount(name); |
| 135 testArgumentTypes(name, argc); | 140 testArgumentTypes(name, argc); |
| 136 } | 141 } |
| 137 } | 142 } |
| 138 | 143 |
| 139 testNatives(); | 144 testNatives(); |
| OLD | NEW |