Count line in current function body.
(self)
| 1509 | self.current_function = function_name |
| 1510 | |
| 1511 | def Count(self): |
| 1512 | """Count line in current function body.""" |
| 1513 | if self.in_a_function: |
| 1514 | self.lines_in_function += 1 |
| 1515 | |
| 1516 | def Check(self, error, filename, linenum): |
| 1517 | """Report if too many lines in function body. |
no outgoing calls
no test coverage detected