(self, vm: &VirtualMachine, _source_file: &SourceFile)
| 3 | |
| 4 | impl Node for ast::ConversionFlag { |
| 5 | fn ast_to_object(self, vm: &VirtualMachine, _source_file: &SourceFile) -> PyObjectRef { |
| 6 | vm.ctx.new_int(self as i8).into() |
| 7 | } |
| 8 | |
| 9 | fn ast_from_object( |
| 10 | vm: &VirtualMachine, |
nothing calls this directly
no test coverage detected