(self, module: State, node: FuncBase | SymbolNode)
| 359 | return self.add_prefixes(f'{{{", ".join(base_attrs)}}}', expression), True |
| 360 | |
| 361 | def format_node(self, module: State, node: FuncBase | SymbolNode) -> str: |
| 362 | return f"{module.path}:{node.line}:{node.column + 1}:{node.name}" |
| 363 | |
| 364 | def collect_nodes(self, expression: RefExpr) -> list[FuncBase | SymbolNode]: |
| 365 | """Collect nodes that can be referred to by an expression. |