(src: str, pos: Pos)
| 347 | |
| 348 | |
| 349 | def skip_comments_and_array_ws(src: str, pos: Pos) -> Pos: |
| 350 | while True: |
| 351 | pos_before_skip = pos |
| 352 | pos = skip_chars(src, pos, TOML_WS_AND_NEWLINE) |
| 353 | pos = skip_comment(src, pos) |
| 354 | if pos == pos_before_skip: |
| 355 | return pos |
| 356 | |
| 357 | |
| 358 | def create_dict_rule(src: str, pos: Pos, out: Output) -> tuple[Pos, Key]: |
no test coverage detected
searching dependent graphs…