(
&mut self,
file_path: &str,
line: u32,
character: u32,
)
| 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, |
no outgoing calls
no test coverage detected