aboutsummaryrefslogtreecommitdiff
path: root/src/function_cache.rs
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-01-21 17:25:43 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2024-01-21 17:25:43 +0100
commit79554285331846db8a1d06e2570d5acbb2f2690e (patch)
treecf590a0caf22eabf1809a8d43992ac11128b75a0 /src/function_cache.rs
parentb9b32972afda261020dd207b4ea2b44b7b697b83 (diff)
implement dynamic graph removal and pushing
Diffstat (limited to 'src/function_cache.rs')
-rw-r--r--src/function_cache.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/function_cache.rs b/src/function_cache.rs
index d4beb16..edd7001 100644
--- a/src/function_cache.rs
+++ b/src/function_cache.rs
@@ -29,4 +29,8 @@ impl FunctionCache {
v
}
}
+
+ pub fn name(&self) -> &str {
+ self.func.name()
+ }
}