MCPcopy Create free account
hub / github.com/dexwritescode/rust-mcp / inline_function

Method inline_function

src/analyzer/client.rs:349–361  ·  view source on GitHub ↗
(
        &mut self,
        file_path: &str,
        line: u32,
        character: u32,
    )

Source from the content-addressed store, hash-verified

347 }
348
349 pub async fn inline_function(
350 &mut self,
351 file_path: &str,
352 line: u32,
353 character: u32,
354 ) -> Result<String> {
355 if !self.initialized {
356 return Err(anyhow::anyhow!("Client not initialized"));
357 }
358 Ok(format!(
359 "Inlined function at {file_path}:{line}:{character}"
360 ))
361 }
362
363 pub async fn change_signature(
364 &mut self,

Callers 1

inline_function_implFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected