(self, src)
| 118 | return result |
| 119 | |
| 120 | def get_raw_ast(self, src): |
| 121 | from aura import python_executor |
| 122 | from aura.analyzers import python_src_inspector |
| 123 | |
| 124 | INSPECTOR_PATH = os.path.abspath(python_src_inspector.__file__) |
| 125 | |
| 126 | out = python_executor.run_with_interpreters(command = [INSPECTOR_PATH, "-"], stdin=bytes(src, "utf-8")) |
| 127 | return out["ast_tree"]["body"] |
| 128 | |
| 129 | def get_full_ast(self, src): |
| 130 | """ |
no outgoing calls
no test coverage detected