Extract docstrings from preceding comment nodes.
(state: &ExtractionState, node: TsNode<'_>)
| 1338 | |
| 1339 | /// Extract docstrings from preceding comment nodes. |
| 1340 | fn extract_docstring(state: &ExtractionState, node: TsNode<'_>) -> Option<String> { |
| 1341 | docstring_from_preceding_comments(&state.source, node, clean_c_doc_comment) |
| 1342 | } |
| 1343 | |
| 1344 | // ------------------------------------------------------- |
| 1345 | // Utility helpers |
nothing calls this directly
no test coverage detected