Build an impl block signature string.
(&self, node: &Node, source: &str)
| 472 | |
| 473 | /// Build an impl block signature string. |
| 474 | fn build_impl_signature(&self, node: &Node, source: &str) -> Option<String> { |
| 475 | // Get the first line of the impl block |
| 476 | self.first_line(node, source) |
| 477 | } |
| 478 | |
| 479 | // ── Helpers ───────────────────────────────────────────────────── |
| 480 |