Count line in current function body.
(self)
| 693 | self.current_function = function_name |
| 694 | |
| 695 | def Count(self): |
| 696 | """Count line in current function body.""" |
| 697 | if self.in_a_function: |
| 698 | self.lines_in_function += 1 |
| 699 | |
| 700 | def Check(self, error, filename, linenum): |
| 701 | """Report if too many lines in function body. |
no outgoing calls
no test coverage detected