diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-07T23·38+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-08-12T13·24+0000 |
commit | 18fe188c3e47a7662fa58a4066a9c3f7d9676cac (patch) | |
tree | daa932689b4bcda44ac8b1c83a93c5bc0dcf2273 /tvix | |
parent | 72be759e1e3ec9c84ef3f2f15d54662efa7b0c03 (diff) |
feat(tvix/compiler): implement parens precedence r/4412
Change-Id: I8944354b3690d7504e4fe4254f14be5b849b9bcf Reviewed-on: https://cl.tvl.fyi/c/depot/+/6076 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/eval/src/compiler.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tvix/eval/src/compiler.rs b/tvix/eval/src/compiler.rs index d71eda43aa36..17fd01637592 100644 --- a/tvix/eval/src/compiler.rs +++ b/tvix/eval/src/compiler.rs @@ -6,7 +6,7 @@ use crate::errors::EvalResult; use crate::opcode::OpCode; use crate::value::Value; use rnix; -use rnix::types::TypedNode; +use rnix::types::{TypedNode, Wrapper}; struct Compiler { chunk: Chunk, @@ -36,6 +36,11 @@ impl Compiler { self.compile_unary_op(op) } + rnix::SyntaxKind::NODE_PAREN => { + let op = rnix::types::Paren::cast(node).unwrap(); + self.compile(op.inner().unwrap()) + } + kind => { println!("visiting unsupported node: {:?}", kind); Ok(()) |