(store)
| 309 | }; |
| 310 | |
| 311 | var argument_list = function(store) { |
| 312 | var ret = [], |
| 313 | arg = argument(store ? ret : null); |
| 314 | if (!arg) return; |
| 315 | ret.push(arg); |
| 316 | while (true) { |
| 317 | all_ws(store ? ret : null); |
| 318 | if (!consume(OTHER, ",")) return ret; |
| 319 | var nxt = argument(store ? ret : null) || error("Trailing comma in arguments list"); |
| 320 | ret.push(nxt); |
| 321 | } |
| 322 | }; |
| 323 | |
| 324 | var simple_extended_attr = function(store) { |
| 325 | all_ws(); |
no test coverage detected