(type)
| 407 | return cont(); |
| 408 | } |
| 409 | function maybeexpression(type) { |
| 410 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 411 | return pass(expression); |
| 412 | } |
| 413 | function maybeexpressionNoComma(type) { |
| 414 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 415 | return pass(expressionNoComma); |