(self, elem)
| 120 | return name if name.startswith("MaterialX::") else f"MaterialX::{name}" |
| 121 | |
| 122 | def _get_text(self, elem) -> str: |
| 123 | if elem is None: |
| 124 | return "" |
| 125 | text = "".join(elem.itertext()) |
| 126 | return re.sub(r"\s+", " ", text).strip() |
| 127 | |
| 128 | def _extract_detail(self, elem, exclude_tags={"parameterlist", "simplesect"}) -> str: |
| 129 | if elem is None: |
no outgoing calls
no test coverage detected