(type, value)
| 323 | } |
| 324 | |
| 325 | function typedef (type, value) |
| 326 | { |
| 327 | if(type == "variable" && /[A-Z]/.test(value.charAt(0))) { registerimport(value); return cont(); } |
| 328 | else if (type == "type" && /[A-Z]/.test(value.charAt(0))) { return cont(); } |
| 329 | } |
| 330 | |
| 331 | function maybelabel(type) { |
| 332 | if (type == ":") return cont(poplex, statement); |
nothing calls this directly
no test coverage detected