(state: &ExtractionState, node: TsNode<'_>)
| 640 | // ------------------------------------------------------- |
| 641 | |
| 642 | fn extract_docstring(state: &ExtractionState, node: TsNode<'_>) -> Option<String> { |
| 643 | docstring_from_preceding_comments(&state.source, node, clean_c_comment) |
| 644 | } |
| 645 | |
| 646 | // ------------------------------------------------------- |
| 647 | // Utility helpers |
nothing calls this directly
no test coverage detected