MCPcopy Create free account
hub / github.com/ParzivalHack/PySpector / PythonFile

Class PythonFile

src/pyspector/_rust_core/src/ast_parser.rs:16–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14
15#[derive(Debug)]
16pub struct PythonFile {
17 pub file_path: String,
18 pub content: String,
19 pub ast: Option<AstNode>,
20}
21
22impl PythonFile {
23 pub fn new(file_path: String, content: String, ast_json: String) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected