(type)
| 271 | return cont(); |
| 272 | } |
| 273 | function maybeexpression(type) { |
| 274 | if (type.match(/[;\}\)\],]/)) return pass(); |
| 275 | return pass(expression); |
| 276 | } |
| 277 | |
| 278 | function maybeoperator(type, value) { |
| 279 | if (type == "operator" && /\+\+|--/.test(value)) return cont(maybeoperator); |
nothing calls this directly
no test coverage detected
searching dependent graphs…