about summary refs log tree commit diff
path: root/src/interpret
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2021-10-24 02:03:29 +0200
committerMel <einebeere@gmail.com>2021-10-24 02:03:29 +0200
commit73c4808c44f75b7d6546f00f70779fcbf8e28754 (patch)
treef44e26fad3f37e62c0f5a35e2fafbe2d20f6da55 /src/interpret
parent249abe9c33dfd08afa6b09f3e53be91b0f445561 (diff)
downloadrabbithole-73c4808c44f75b7d6546f00f70779fcbf8e28754.tar.zst
rabbithole-73c4808c44f75b7d6546f00f70779fcbf8e28754.zip
Postfix parsing
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 {