diff options
| author | Mel <einebeere@gmail.com> | 2021-10-24 02:03:29 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2021-10-24 02:03:29 +0200 |
| commit | 73c4808c44f75b7d6546f00f70779fcbf8e28754 (patch) | |
| tree | f44e26fad3f37e62c0f5a35e2fafbe2d20f6da55 /src/interpret | |
| parent | 249abe9c33dfd08afa6b09f3e53be91b0f445561 (diff) | |
| download | rabbithole-73c4808c44f75b7d6546f00f70779fcbf8e28754.tar.zst rabbithole-73c4808c44f75b7d6546f00f70779fcbf8e28754.zip | |
Postfix parsing
Diffstat (limited to 'src/interpret')
| -rw-r--r-- | src/interpret/walker.rs | 3 |
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 { |
