You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pubstructArguments<R = TextRange>{range: ...,posonlyargs:Vec<Argument>,args:Vec<Argument>,vararg:Option<Box<Argument>>,kwonlyargs:Vec<Argument>,kwarg:Option<Box<Argument>>,type_comment:Option<String>,// unparsed type_comment// no defaults and kw_defaults here}structArgument{arg:Identifier,annotation:Option<Expr>,default:Option<Expr>,// default is placed here unlike Arg}
Currently the rust AST nodes layout is almost same as Python ast defined in Python side.
Which is less parser-friendly than:
cc @MichaReiser
The text was updated successfully, but these errors were encountered: