(self)
| 223 | |
| 224 | @property |
| 225 | def instruction_count(self) -> int: |
| 226 | self._buildStartCache() |
| 227 | assert self._instStarts is not None |
| 228 | return len(self._instStarts) |
| 229 | |
| 230 | @property |
| 231 | def function(self) -> Optional['_function.Function']: |
no test coverage detected