()
| 2367 | } |
| 2368 | |
| 2369 | function comma() { |
| 2370 | if (next_token.id !== ',') { |
| 2371 | warn_at('expected_a_b', token.line, token.thru, ',', artifact()); |
| 2372 | } else { |
| 2373 | if (!option.white) { |
| 2374 | no_space_only(); |
| 2375 | } |
| 2376 | advance(','); |
| 2377 | spaces(); |
| 2378 | } |
| 2379 | } |
| 2380 | |
| 2381 | |
| 2382 | function semicolon() { |
no test coverage detected
searching dependent graphs…