(code)
| 1351 | yield (code, length, line, line, column, column + (second_byte & 15)) |
| 1352 | |
| 1353 | def positions_from_location_table(code): |
| 1354 | for _, length, line, end_line, col, end_col in parse_location_table(code): |
| 1355 | for _ in range(length): |
| 1356 | yield (line, end_line, col, end_col) |
| 1357 | |
| 1358 | def dedup(lst, prev=object()): |
| 1359 | for item in lst: |
no test coverage detected