(text)
| 165 | |
| 166 | |
| 167 | def _find_function_body(text): |
| 168 | split = function_body_pattern.search(text) |
| 169 | return (split.start(2), split.end(2)) if split else (None, None) |
| 170 | |
| 171 | |
| 172 | def _statement_from_function(full_text, text_before_cursor, statement): |
no outgoing calls
no test coverage detected