(type, value)
| 325 | return pass(); |
| 326 | } |
| 327 | function vardef2(type, value) { |
| 328 | if (value == "=") return cont(expression, vardef2); |
| 329 | if (type == ",") return cont(vardef1); |
| 330 | } |
| 331 | function forspec1(type) { |
| 332 | if (type == "var") return cont(vardef1, expect(";"), forspec2); |
| 333 | if (type == ";") return cont(forspec2); |
nothing calls this directly
no test coverage detected
searching dependent graphs…