File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,7 +121,12 @@ def dispatch(self, node):
121121 return meth (node )
122122
123123class ExampleASTVisitor (ASTVisitor ):
124- """Prints examples of the nodes that aren't visited"""
124+ """Prints examples of the nodes that aren't visited
125+
126+ This visitor-driver is only useful for development, when it's
127+ helpful to develop a visitor incremently, and get feedback on what
128+ you still have to do.
129+ """
125130 examples = {}
126131
127132 def dispatch (self , node ):
Original file line number Diff line number Diff line change @@ -121,7 +121,12 @@ def dispatch(self, node):
121121 return meth (node )
122122
123123class ExampleASTVisitor (ASTVisitor ):
124- """Prints examples of the nodes that aren't visited"""
124+ """Prints examples of the nodes that aren't visited
125+
126+ This visitor-driver is only useful for development, when it's
127+ helpful to develop a visitor incremently, and get feedback on what
128+ you still have to do.
129+ """
125130 examples = {}
126131
127132 def dispatch (self , node ):
You can’t perform that action at this time.
0 commit comments