(type)
| 314 | if(type == "(") return cont(pushlex(")"), commasep(metaargs, ")"), poplex, statement); |
| 315 | } |
| 316 | function metaargs(type) { |
| 317 | if(type == "variable") return cont(); |
| 318 | } |
| 319 | |
| 320 | function importdef (type, value) { |
| 321 | if(type == "variable" && /[A-Z]/.test(value.charAt(0))) { registerimport(value); return cont(); } |