(type)
| 309 | } |
| 310 | |
| 311 | function metadef(type) { |
| 312 | if(type == ":") return cont(metadef); |
| 313 | if(type == "variable") return cont(metadef); |
| 314 | if(type == "(") return cont(pushlex(")"), commasep(metaargs, ")"), poplex, statement); |
| 315 | } |
| 316 | function metaargs(type) { |
| 317 | if(type == "variable") return cont(); |
| 318 | } |