(type, value)
| 489 | return pass(pattern, maybetype, maybeAssign, vardefCont); |
| 490 | } |
| 491 | function pattern(type, value) { |
| 492 | if (type == "variable") { register(value); return cont(); } |
| 493 | if (type == "[") return contCommasep(pattern, "]"); |
| 494 | if (type == "{") return contCommasep(proppattern, "}"); |
| 495 | } |
| 496 | function proppattern(type, value) { |
| 497 | if (type == "variable" && !cx.stream.match(/^\s*:/, false)) { |
| 498 | register(value); |
nothing calls this directly
no test coverage detected