working on #19

This commit is contained in:
2025-11-12 15:18:45 -07:00
parent 90168a0999
commit 57099de38a
2 changed files with 27 additions and 5 deletions

View File

@@ -75,14 +75,17 @@ impl<'a> CallbackContext<'a> {
}
}
#[allow(dead_code)]
pub fn clear_variables(&mut self) {
()
}
#[allow(dead_code)]
pub fn clear_functions(&mut self) {
self.functions.clear()
()
}
#[allow(dead_code)]
pub fn clear(&mut self) {
self.clear_variables();
self.clear_functions();