(self, vm: &VirtualMachine, source_file: &SourceFile)
| 8 | |
| 9 | impl Node for PositionalArguments { |
| 10 | fn ast_to_object(self, vm: &VirtualMachine, source_file: &SourceFile) -> PyObjectRef { |
| 11 | let Self { args, range: _ } = self; |
| 12 | BoxedSlice(args).ast_to_object(vm, source_file) |
| 13 | } |
| 14 | |
| 15 | fn ast_from_object( |
| 16 | vm: &VirtualMachine, |