Extract docstring for an `implementation_definition` by looking at preceding sibling comments within the `class_implementation`.
(state: &ExtractionState, node: TsNode<'_>)
| 1021 | /// Extract docstring for an `implementation_definition` by looking at preceding |
| 1022 | /// sibling comments within the `class_implementation`. |
| 1023 | fn extract_impl_method_docstring(state: &ExtractionState, node: TsNode<'_>) -> Option<String> { |
| 1024 | docstring_from_preceding_comments(&state.source, node, clean_c_doc_comment) |
| 1025 | } |
| 1026 | |
| 1027 | // ------------------------------------------------------- |
| 1028 | // method_definition (with body, inside @implementation) |
nothing calls this directly
no test coverage detected