(type)
| 262 | } |
| 263 | function commasep(what, end) { |
| 264 | function proceed(type) { |
| 265 | if (type == ",") return cont(what, proceed); |
| 266 | if (type == end) return cont(); |
| 267 | return cont(expect(end)); |
| 268 | } |
| 269 | return function commaSeparated(type) { |
| 270 | if (type == end) return cont(); |
| 271 | else return pass(what, proceed); |