class documentation

class SyntheticTypeVisitor(TypeVisitor[T]): (source)

View In Hierarchy

A TypeVisitor that also knows how to visit synthetic AST constructs.

Not just real types.

Method visit​_callable​_argument Undocumented
Method visit​_ellipsis​_type Undocumented
Method visit​_placeholder​_type Undocumented
Method visit​_raw​_expression​_type Undocumented
Method visit​_star​_type Undocumented
Method visit​_type​_list Undocumented
@abstractmethod
def visit_callable_argument(self, t): (source)

Undocumented

Parameters
t:CallableArgumentUndocumented
Returns
TUndocumented
@abstractmethod
def visit_ellipsis_type(self, t): (source)

Undocumented

Parameters
t:EllipsisTypeUndocumented
Returns
TUndocumented
@abstractmethod
def visit_placeholder_type(self, t): (source)

Undocumented

Parameters
t:PlaceholderTypeUndocumented
Returns
TUndocumented
@abstractmethod
def visit_raw_expression_type(self, t): (source)

Undocumented

Parameters
t:RawExpressionTypeUndocumented
Returns
TUndocumented
@abstractmethod
def visit_star_type(self, t): (source)

Undocumented

Parameters
t:StarTypeUndocumented
Returns
TUndocumented
@abstractmethod
def visit_type_list(self, t): (source)

Undocumented

Parameters
t:TypeListUndocumented
Returns
TUndocumented