(type)
| 448 | return cont(); |
| 449 | } |
| 450 | function maybeexpression(type) { |
| 451 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 452 | return pass(expression); |
| 453 | } |
| 454 | |
| 455 | function maybeoperatorComma(type, value) { |
| 456 | if (type == ",") return cont(maybeexpression); |