MCPcopy Index your code
hub / github.com/datacamp/pythonwhat / visit_While

Method visit_While

pythonwhat/parsing.py:484–486  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

482 self.visit_each(node.orelse)
483
484 def visit_While(self, node):
485 self.visit_each(node.body)
486 self.visit_each(node.orelse)
487
488 def visit_For(self, node):
489 self.visit_each(node.body)

Callers

nothing calls this directly

Calls 1

visit_eachMethod · 0.80

Tested by

no test coverage detected