(
vm: &VirtualMachine,
source_file: &SourceFile,
object: PyObjectRef,
)
| 13 | } |
| 14 | |
| 15 | fn ast_from_object( |
| 16 | vm: &VirtualMachine, |
| 17 | source_file: &SourceFile, |
| 18 | object: PyObjectRef, |
| 19 | ) -> PyResult<Self> { |
| 20 | let args: BoxedSlice<_> = Node::ast_from_object(vm, source_file, object)?; |
| 21 | Ok(Self { |
| 22 | args: args.0, |
| 23 | range: TextRange::default(), // TODO |
| 24 | }) |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | pub(super) struct KeywordArguments { |
nothing calls this directly
no test coverage detected