(text)
| 179 | |
| 180 | |
| 181 | def _find_function_body(text): |
| 182 | split = function_body_pattern.search(text) |
| 183 | return (split.start(2), split.end(2)) if split else (None, None) |
| 184 | |
| 185 | |
| 186 | def _statement_from_function(full_text, text_before_cursor, statement): |
no test coverage detected