Extract docstrings from preceding comment nodes.
(state: &ExtractionState, node: TsNode<'_>)
| 1359 | |
| 1360 | /// Extract docstrings from preceding comment nodes. |
| 1361 | fn extract_docstring(state: &ExtractionState, node: TsNode<'_>) -> Option<String> { |
| 1362 | docstring_from_preceding_comments(&state.source, node, clean_c_comment) |
| 1363 | } |
| 1364 | |
| 1365 | // ------------------------------------------------------- |
| 1366 | // Utility helpers |
nothing calls this directly
no test coverage detected