MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / extract_impl_method_docstring

Method extract_impl_method_docstring

src/extraction/objc_extractor.rs:1023–1025  ·  view source on GitHub ↗

Extract docstring for an `implementation_definition` by looking at preceding sibling comments within the `class_implementation`.

(state: &ExtractionState, node: TsNode<'_>)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected