(type)
| 289 | return cont(); |
| 290 | } |
| 291 | function maybeexpression(type) { |
| 292 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 293 | return pass(expression); |
| 294 | } |
| 295 | |
| 296 | function maybeoperator(type, value) { |
| 297 | if (type == "operator" && /\+\+|--/.test(value)) return cont(maybeoperator); |