Rust: add Callable::getParam and CallExprBase::getArg shortcuts

This commit is contained in:
Paolo Tranquilli
2025-06-06 16:18:16 +02:00
parent c1c0a705b9
commit a405a12e93
26 changed files with 159 additions and 48 deletions

View File

@@ -226,6 +226,7 @@ class CallExprBase(Expr):
"""
arg_list: optional["ArgList"] | child
attrs: list["Attr"] | child
args: list["Expr"] | synth
@annotate(CallExpr, replace_bases={Expr: CallExprBase}, cfg=True)