Type Alias rustpython_ast::located::ExprCall
source · pub type ExprCall = ExprCall<SourceRange>;
Aliased Type§
struct ExprCall {
pub range: SourceRange,
pub func: Box<Expr<SourceRange>>,
pub args: Vec<Expr<SourceRange>>,
pub keywords: Vec<Keyword<SourceRange>>,
}
Fields§
§range: SourceRange
§func: Box<Expr<SourceRange>>
§args: Vec<Expr<SourceRange>>
§keywords: Vec<Keyword<SourceRange>>