diff options
Diffstat (limited to 'src/ast/mod.rs')
-rw-r--r-- | src/ast/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast/mod.rs b/src/ast/mod.rs index 09b89e7..888c810 100644 --- a/src/ast/mod.rs +++ b/src/ast/mod.rs @@ -603,6 +603,7 @@ impl Type for Call { type Err = Never; fn closed(&self, _depth: usize) -> Result<(), VariableError> { + dbg!(&self.name); todo!() } |