:return: The start of the current open block or `-1` if there is not an open block
(self)
| 1026 | suppressed.append(line_range) |
| 1027 | |
| 1028 | def GetOpenBlockStart(self): |
| 1029 | """:return: The start of the current open block or `-1` if there is not an open block""" |
| 1030 | return self._open_block_suppression.begin if self._open_block_suppression else -1 |
| 1031 | |
| 1032 | def AddGlobalSuppression(self, category): |
| 1033 | """Add a suppression for `category` which is suppressed for the whole file""" |
no outgoing calls
no test coverage detected