mirror of
https://github.com/OMGeeky/appmap_tracing_test.git
synced 2025-12-28 23:36:17 +01:00
try some stuff to get to the value of a parameter passed to a function (I think I found a way, but it's not working yet)
This commit is contained in:
@@ -45,7 +45,7 @@ pub fn find_class_in_tree_mut<'a>(
|
||||
node: &'a mut CodeObjectType,
|
||||
class: &str,
|
||||
) -> Option<&'a mut ClassCodeObject> {
|
||||
println!("trying to find class: {} in node: {:?}", class, node);
|
||||
// println!("trying to find class: {} in node: {:?}", class, node);
|
||||
let children = match node {
|
||||
CodeObjectType::Class(c) => {
|
||||
if class.ends_with(&c.name) {
|
||||
|
||||
Reference in New Issue
Block a user