(cont)
| 1172 | }; |
| 1173 | |
| 1174 | function in_loop(cont) { |
| 1175 | try { |
| 1176 | ++S.in_loop; |
| 1177 | return cont(); |
| 1178 | } finally { |
| 1179 | --S.in_loop; |
| 1180 | } |
| 1181 | }; |
| 1182 | |
| 1183 | return as("toplevel", (function(a){ |
| 1184 | while (!is("eof")) |
no test coverage detected
searching dependent graphs…