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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 // the rest of the tests. | 114 // the rest of the tests. |
115 "DisableAccessChecks": true, | 115 "DisableAccessChecks": true, |
116 "EnableAccessChecks": true, | 116 "EnableAccessChecks": true, |
117 | 117 |
118 // These functions should not be callable as runtime functions. | 118 // These functions should not be callable as runtime functions. |
119 "NewContext": true, | 119 "NewContext": true, |
120 "NewArgumentsFast": true, | 120 "NewArgumentsFast": true, |
121 "PushContext": true, | 121 "PushContext": true, |
122 "LazyCompile": true, | 122 "LazyCompile": true, |
123 "CreateObjectLiteralBoilerplate": true, | 123 "CreateObjectLiteralBoilerplate": true, |
124 "CloneLiteralBoilerplate": true, | 124 "CloneObjectLiteralBoilerplate": true, |
125 "CreateArrayLiteralBoilerplate": true, | |
126 "IS_VAR": true, | 125 "IS_VAR": true, |
127 "ResolvePossiblyDirectEval": true, | 126 "ResolvePossiblyDirectEval": true, |
128 "Log": true | 127 "Log": true |
129 }; | 128 }; |
130 | 129 |
131 var currentlyUncallable = { | 130 var currentlyUncallable = { |
132 // We need to find a way to test this without breaking the system. | 131 // We need to find a way to test this without breaking the system. |
133 "SystemBreak": true | 132 "SystemBreak": true |
134 }; | 133 }; |
135 | 134 |
136 function testNatives() { | 135 function testNatives() { |
137 var allNatives = %ListNatives(); | 136 var allNatives = %ListNatives(); |
138 for (var i = 0; i < allNatives.length; i++) { | 137 for (var i = 0; i < allNatives.length; i++) { |
139 var nativeInfo = allNatives[i]; | 138 var nativeInfo = allNatives[i]; |
140 var name = nativeInfo[0]; | 139 var name = nativeInfo[0]; |
141 if (name in knownProblems || name in currentlyUncallable) | 140 if (name in knownProblems || name in currentlyUncallable) |
142 continue; | 141 continue; |
143 print(name); | 142 print(name); |
144 var argc = nativeInfo[1]; | 143 var argc = nativeInfo[1]; |
145 testArgumentCount(name); | 144 testArgumentCount(name); |
146 testArgumentTypes(name, argc); | 145 testArgumentTypes(name, argc); |
147 } | 146 } |
148 } | 147 } |
149 | 148 |
150 testNatives(); | 149 testNatives(); |
OLD | NEW |