(type)
| 373 | return cont(); |
| 374 | } |
| 375 | function maybeexpression(type) { |
| 376 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 377 | return pass(expression); |
| 378 | } |
| 379 | function maybeexpressionNoComma(type) { |
| 380 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 381 | return pass(expressionNoComma); |