MCPcopy Create free account
hub / github.com/Glyphack/enderpy / Arguments

Class Arguments

parser/src/ast.rs:727–736  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

725// https://docs.python.org/3/library/ast.html#ast.arguments
726#[derive(Debug, Clone)]
727pub struct Arguments {
728 pub node: Node,
729 pub posonlyargs: Vec<Arg>,
730 pub args: Vec<Arg>,
731 pub vararg: Option<Arg>,
732 pub kwonlyargs: Vec<Arg>,
733 pub kw_defaults: Vec<Option<Expression>>,
734 pub kwarg: Option<Arg>,
735 pub defaults: Vec<Expression>,
736}
737
738impl Arguments {
739 pub fn len(&self) -> usize {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected