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