(type)
| 411 | return pass(expression); |
| 412 | } |
| 413 | function maybeexpressionNoComma(type) { |
| 414 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 415 | return pass(expressionNoComma); |
| 416 | } |
| 417 | |
| 418 | function maybeoperatorComma(type, value) { |
| 419 | if (type == ",") return cont(expression); |