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

Method visit_arguments

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

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

(self, node: doc.arguments)

Source from the content-addressed store, hash-verified

742 _dispatch_wrapper(func)(self, node)
743
744 def visit_arguments(self, node: doc.arguments) -> Any:
745 """The general arguments visiting method.
746
747 Parameters
748 ----------
749 node : doc.arguments
750 The doc AST arguments node.
751
752 Returns
753 -------
754 res : Any
755 The visiting result.
756 """
757 return _dispatch(self, "arguments")(self, node)
758
759 def visit_For(self, node: doc.For) -> Any: # pylint: disable=invalid-name
760 """The general for visiting method.

Callers

nothing calls this directly

Calls 1

_dispatchFunction · 0.70

Tested by

no test coverage detected