| 14 | |
| 15 | #[derive(Debug)] |
| 16 | pub struct PythonFile { |
| 17 | pub file_path: String, |
| 18 | pub content: String, |
| 19 | pub ast: Option<AstNode>, |
| 20 | } |
| 21 | |
| 22 | impl PythonFile { |
| 23 | pub fn new(file_path: String, content: String, ast_json: String) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected