(leaf: Leaf)
| 1407 | current_line.append(leaf) |
| 1408 | |
| 1409 | def append_comments(leaf: Leaf) -> Iterator[Line]: |
| 1410 | for comment_after in line.comments_after(leaf): |
| 1411 | yield from append_to_line(comment_after) |
| 1412 | |
| 1413 | last_non_comment_leaf = _get_last_non_comment_leaf(line) |
| 1414 | for leaf_idx, leaf in enumerate(line.leaves): |
no test coverage detected