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