Type Alias NamedArgList

Source
pub type NamedArgList<'ast> = BoxSlice<'ast, NamedArg<'ast>>;
Expand description

A list of named arguments: {a: "1", b: 2}.

Present in CallArgsKind::Named and ExprKind::CallOptions.