(type)
| 237 | return cont(); |
| 238 | } |
| 239 | function maybeexpression(type) { |
| 240 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 241 | return pass(expression); |
| 242 | } |
| 243 | |
| 244 | function maybeoperator(type, value) { |
| 245 | if (type == "operator" && /\+\+|--/.test(value)) return cont(maybeoperator); |