class documentation

class DependencyFinderVisitor(NodeVisitor): (source)

View In Hierarchy

A visitor that collects filter and test calls.

Method __init__ Undocumented
Method visit_Block Stop visiting at blocks.
Method visit_Filter Undocumented
Method visit_Test Undocumented
Instance Variable filters Undocumented
Instance Variable tests Undocumented

Inherited from NodeVisitor:

Method generic_visit Called if no explicit visitor function exists for a node.
Method get_visitor Return the visitor function for this node or `None` if no visitor exists for this node. In that case the generic visit function is used instead.
Method visit Visit a node.
def __init__(self): (source)

Undocumented

def visit_Block(self, node): (source)

Stop visiting at blocks.

Parameters
node:nodes.BlockUndocumented
def visit_Filter(self, node): (source)

Undocumented

Parameters
node:nodes.FilterUndocumented
def visit_Test(self, node): (source)

Undocumented

Parameters
node:nodes.TestUndocumented
filters: t.Set[str] = (source)

Undocumented

tests: t.Set[str] = (source)

Undocumented