class documentation

Temporary dummy node used during type checking. This node is not present in the original program; it is just an artifact of the type checker implementation. It only represents an opaque node with some fixed type.

Method __init__ Construct a dummy node; optionally borrow line/column from context object.
Method __repr__ Undocumented
Method accept Undocumented
Class Variable __slots__ Undocumented
Instance Variable column Undocumented
Instance Variable line Undocumented
Instance Variable no_rhs Undocumented
Instance Variable type 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 end_column Undocumented
Instance Variable end_line Undocumented
def __init__(self, typ: mypy.types.Type, no_rhs: bool = False, *, context: Context|None = None): (source)

Construct a dummy node; optionally borrow line/column from context object.

def __repr__(self) -> str: (source)

Undocumented

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

Undocumented

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

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented