class documentation

Call expression. This can also represent several special forms that are syntactically calls such as cast(...) and None # type: ....

Method __init__ Undocumented
Method accept Undocumented
Class Variable __match_args__ Undocumented
Class Variable __slots__ Undocumented
Instance Variable analyzed Undocumented
Instance Variable arg_kinds Undocumented
Instance Variable arg_names Undocumented
Instance Variable args Undocumented
Instance Variable callee Undocumented

Inherited from Node (via Expression):

Method __str__ Undocumented

Inherited from Context (via Expression, Node):

Method set_line If target is a node, pull line (and column) information into this node. If column is specified, this will override any column information coming from a node.
Instance Variable column Undocumented
Instance Variable end_column Undocumented
Instance Variable end_line Undocumented
Instance Variable line Undocumented
def __init__(self, callee: Expression, args: list[Expression], arg_kinds: list[ArgKind], arg_names: list[str|None], analyzed: Expression|None = None): (source)

Undocumented

def accept(self, visitor: ExpressionVisitor[T]) -> T: (source)

Undocumented

__match_args__: tuple[str, ...] = (source)

Undocumented

__slots__: tuple[str, ...] = (source)

Undocumented

analyzed = (source)

Undocumented

arg_kinds = (source)

Undocumented

Undocumented

Undocumented

Undocumented