MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / visit_While

Method visit_While

tools/python-3.11.9-amd64/Lib/ast.py:1089–1097  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

1087 self.traverse(node.orelse)
1088
1089 def visit_While(self, node):
1090 self.fill("while ")
1091 self.traverse(node.test)
1092 with self.block():
1093 self.traverse(node.body)
1094 if node.orelse:
1095 self.fill("else")
1096 with self.block():
1097 self.traverse(node.orelse)
1098
1099 def visit_With(self, node):
1100 self.fill("with ")

Callers

nothing calls this directly

Calls 3

fillMethod · 0.95
traverseMethod · 0.95
blockMethod · 0.95

Tested by

no test coverage detected