| 31 | |
| 32 | |
| 33 | class Bit(object): |
| 34 | def __init__(self): |
| 35 | self.name = None |
| 36 | self.idx = None |
| 37 | self.container = None |
| 38 | self.length = 1 |
| 39 | |
| 40 | def __str__(self): |
| 41 | return f'(Bit: {self.name}, container:{self.container}, idx:{self.idx})' |
| 42 | |
| 43 | __repr__ = __str__ |
| 44 | |
| 45 | |
| 46 | class Struct(object): |
no outgoing calls
no test coverage detected