(self)
| 1037 | _TEST_TRIGGER = 400 # about 50% more than _NORMAL_TRIGGER. |
| 1038 | |
| 1039 | def __init__(self): |
| 1040 | self.in_a_function = False |
| 1041 | self.lines_in_function = 0 |
| 1042 | self.current_function = '' |
| 1043 | |
| 1044 | def Begin(self, function_name): |
| 1045 | """Start analyzing function body. |
nothing calls this directly
no outgoing calls
no test coverage detected