Count line in current function body.
(self)
| 1653 | self.current_function = function_name |
| 1654 | |
| 1655 | def Count(self): |
| 1656 | """Count line in current function body.""" |
| 1657 | if self.in_a_function: |
| 1658 | self.lines_in_function += 1 |
| 1659 | |
| 1660 | def Check(self, error, filename, linenum): |
| 1661 | """Report if too many lines in function body. |
no outgoing calls
no test coverage detected