(type)
| 303 | } |
| 304 | |
| 305 | function maybeattribute(type) { |
| 306 | if (type == "attribute") return cont(maybeattribute); |
| 307 | if (type == "function") return cont(functiondef); |
| 308 | if (type == "var") return cont(vardef1); |
| 309 | } |
| 310 | |
| 311 | function metadef(type) { |
| 312 | if(type == ":") return cont(metadef); |