(it)
| 665 | return val |
| 666 | |
| 667 | def read_signed_varint(it): |
| 668 | uval = read_varint(it) |
| 669 | if uval & 1: |
| 670 | return -(uval >> 1) |
| 671 | else: |
| 672 | return uval >> 1 |
| 673 | |
| 674 | def parse_location_table(firstlineno, linetable): |
| 675 | line = firstlineno |
no test coverage detected
searching dependent graphs…