(type)
| 311 | return pass(); |
| 312 | } |
| 313 | function impl(type) { |
| 314 | if (content == "<") return cont(typarams, impl); |
| 315 | if (content == "of" || content == "for") {cx.marked = "keyword"; return cont(rtype, impl);} |
| 316 | if (type == "name") {cx.marked = "def"; return cont(impl);} |
| 317 | if (type == "{") return cont(pushlex("}"), block, poplex); |
| 318 | return pass(); |
| 319 | } |
| 320 | function typarams() { |
| 321 | if (content == ">") return cont(); |
| 322 | if (content == ",") return cont(typarams); |