(wanted)
| 248 | poplex.lex = true; |
| 249 | |
| 250 | function expect(wanted) { |
| 251 | function f(type) { |
| 252 | if (type == wanted) return cont(); |
| 253 | else if (wanted == ";") return pass(); |
| 254 | else return cont(f); |
| 255 | }; |
| 256 | return f; |
| 257 | } |
| 258 | |
| 259 | function statement(type) { |
| 260 | if (type == "@") return cont(metadef); |
no outgoing calls
no test coverage detected