MCPcopy Index your code
hub / github.com/apache/tvm / visit_While

Method visit_While

python/tvm/script/parser/core/parser.py:774–787  ·  view source on GitHub ↗

The general while visiting method. Parameters ---------- node : doc.While The doc AST while node. Returns ------- res : Any The visiting result.

(self, node: doc.While)

Source from the content-addressed store, hash-verified

772 return _dispatch(self, "For")(self, node)
773
774 def visit_While(self, node: doc.While) -> Any: # pylint: disable=invalid-name
775 """The general while visiting method.
776
777 Parameters
778 ----------
779 node : doc.While
780 The doc AST while node.
781
782 Returns
783 -------
784 res : Any
785 The visiting result.
786 """
787 return _dispatch(self, "While")(self, node)
788
789 def visit_With(self, node: doc.With) -> Any: # pylint: disable=invalid-name
790 """The general with visiting method.

Callers

nothing calls this directly

Calls 1

_dispatchFunction · 0.70

Tested by

no test coverage detected