(
vm: &VirtualMachine,
source_file: &SourceFile,
object: PyObjectRef,
)
| 27 | } |
| 28 | |
| 29 | fn ast_from_object( |
| 30 | vm: &VirtualMachine, |
| 31 | source_file: &SourceFile, |
| 32 | object: PyObjectRef, |
| 33 | ) -> PyResult<Self> { |
| 34 | vm.extract_elements_with(&object, |obj| Node::ast_from_object(vm, source_file, obj)) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | impl<T: Node> Node for Box<T> { |
nothing calls this directly
no test coverage detected