Count line in current function body.
(self)
| 829 | self.current_function = function_name |
| 830 | |
| 831 | def Count(self): |
| 832 | """Count line in current function body.""" |
| 833 | if self.in_a_function: |
| 834 | self.lines_in_function += 1 |
| 835 | |
| 836 | def Check(self, error, filename, linenum): |
| 837 | """Report if too many lines in function body. |
no outgoing calls
no test coverage detected