about summary refs log tree commit diff
path: root/src/interpret
diff options
context:
space:
mode:
Diffstat (limited to 'src/interpret')
-rw-r--r--src/interpret/walker.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interpret/walker.rs b/src/interpret/walker.rs
index db37a26..ac3a092 100644
--- a/src/interpret/walker.rs
+++ b/src/interpret/walker.rs
@@ -109,6 +109,9 @@ impl Walker {
 
                 Ok(new_value)
             }
+            Expression::Call(_) => todo!("Calls not implemented yet."),
+            Expression::ArrayAccess(_) => todo!("Arrays not implemented yet."),
+            Expression::MemberAccess(_) => todo!("Structures not implemented yet."),
             Expression::Group(node) => self.walk_expression(node),
             Expression::Literal(token) => {
                 let value = match token {