(type)
| 172 | |
| 173 | function commasep(comb, end) { |
| 174 | function more(type) { |
| 175 | if (type == ",") return cont(comb, more); |
| 176 | if (type == end) return cont(); |
| 177 | return cont(more); |
| 178 | } |
| 179 | return function(type) { |
| 180 | if (type == end) return cont(); |
| 181 | return pass(comb, more); |