MCPcopy Index your code
hub / github.com/CodeBendKit/codeseek / to_string

Method to_string

rust-core/src/codegraph/treesitter/ast_instance_structs.rs:45–54  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

43
44impl TypeDef {
45 pub fn to_string(&self) -> String {
46 let mut res = String::from("");
47 if let Some(name) = &self.name {
48 res.push_str(&name);
49 }
50 for nested in &self.nested_types {
51 res.push_str(&format!("_{}", &nested.to_string()));
52 }
53 res
54 }
55
56 pub fn get_nested_types(&self) -> Vec<TypeDef> {
57 let mut types = vec![];

Callers 15

default_providerFunction · 0.80
default_modelFunction · 0.80
default_api_base_urlFunction · 0.80
default_reranker_modelFunction · 0.80
detect_projectFunction · 0.80
mainFunction · 0.80
execute_callersFunction · 0.80
execute_calleesFunction · 0.80
codeseek_binFunction · 0.80
install_to_claudeFunction · 0.80
install_to_codexFunction · 0.80
uninstall_from_codexFunction · 0.80

Calls

no outgoing calls

Tested by 14

test_searchFunction · 0.64
test_cachingFunction · 0.64
expand_call_chainFunction · 0.64
get_prefixFunction · 0.64
get_raw_dataFunction · 0.64
processMethod · 0.64
printFunction · 0.64
eq_symbolsFunction · 0.64