(type)
| 377 | return pass(expression); |
| 378 | } |
| 379 | function maybeexpressionNoComma(type) { |
| 380 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 381 | return pass(expressionNoComma); |
| 382 | } |
| 383 | |
| 384 | function maybeoperatorComma(type, value) { |
| 385 | if (type == ",") return cont(expression); |