MCPcopy Create free account
hub / github.com/apache/fory / get_module_path

Method get_module_path

compiler/fory_compiler/generators/rust.py:708–712  ·  view source on GitHub ↗

Build module path from parent message names.

(self, parent_stack: Optional[List[Message]])

Source from the content-addressed store, hash-verified

706 return ".".join(parts)
707
708 def get_module_path(self, parent_stack: Optional[List[Message]]) -> str:
709 """Build module path from parent message names."""
710 if not parent_stack:
711 return ""
712 return "::".join(self.get_module_identifier(parent) for parent in parent_stack)
713
714 def get_type_path(
715 self, type_def: object, parent_stack: Optional[List[Message]]

Callers 1

get_type_pathMethod · 0.95

Calls 1

get_module_identifierMethod · 0.95

Tested by

no test coverage detected