(self, vm: &VirtualMachine, source_file: &SourceFile)
| 27 | // sum |
| 28 | impl Node for Mod { |
| 29 | fn ast_to_object(self, vm: &VirtualMachine, source_file: &SourceFile) -> PyObjectRef { |
| 30 | match self { |
| 31 | Self::Module(cons) => cons.ast_to_object(vm, source_file), |
| 32 | Self::Interactive(cons) => cons.ast_to_object(vm, source_file), |
| 33 | Self::Expression(cons) => cons.ast_to_object(vm, source_file), |
| 34 | Self::FunctionType(cons) => cons.ast_to_object(vm, source_file), |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | fn ast_from_object( |
| 39 | vm: &VirtualMachine, |
nothing calls this directly
no test coverage detected