(self, name, value, width, index, hint)
| 156 | |
| 157 | """ |
| 158 | def __init__(self, name, value, width, index, hint): |
| 159 | self.name = name |
| 160 | self.value = value |
| 161 | self.width = width |
| 162 | self.index = index |
| 163 | self.hint = hint |
| 164 | |
| 165 | def __eq__(self, other): |
| 166 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected