(self, category, line_range)
| 990 | self._open_block_suppression = None |
| 991 | |
| 992 | def _AddSuppression(self, category, line_range): |
| 993 | suppressed = self._suppressions[category] |
| 994 | if not (suppressed and suppressed[-1].ContainsRange(line_range)): |
| 995 | suppressed.append(line_range) |
| 996 | |
| 997 | def GetOpenBlockStart(self): |
| 998 | """:return: The start of the current open block or `-1` if there is not an open block""" |
no test coverage detected