(type, comb)
| 379 | return pass(); |
| 380 | } |
| 381 | function matchBrackets(type, comb) { |
| 382 | if (type == "[") return cont(pushlex("]"), commasep(comb, "]"), poplex); |
| 383 | if (type == "(") return cont(pushlex(")"), commasep(comb, ")"), poplex); |
| 384 | if (type == "{") return cont(pushlex("}"), commasep(comb, "}"), poplex); |
| 385 | return cont(); |
| 386 | } |
| 387 | |
| 388 | function parse(state, stream, style) { |
| 389 | var cc = state.cc; |