refactor(tvix/compiler): use rnix's typed AST for literal values

Change-Id: Ic56ab64ad82343c7cdf8168ef41ee0a97f7e1dd9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6077
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
Vincent Ambo 2022-08-08 02:43:51 +03:00 committed by tazjin
parent 18fe188c3e
commit 28f57abac1

View file

@ -22,8 +22,8 @@ impl Compiler {
// Literals contain a single token comprising of the
// literal itself.
rnix::SyntaxKind::NODE_LITERAL => {
let token = node.first_token().expect("TODO");
self.compile_literal(token)
let value = rnix::types::Value::cast(node).unwrap();
self.compile_literal(value.to_value().expect("TODO"))
}
rnix::SyntaxKind::NODE_BIN_OP => {
@ -37,8 +37,8 @@ impl Compiler {
}
rnix::SyntaxKind::NODE_PAREN => {
let op = rnix::types::Paren::cast(node).unwrap();
self.compile(op.inner().unwrap())
let node = rnix::types::Paren::cast(node).unwrap();
self.compile(node.inner().unwrap())
}
kind => {
@ -48,9 +48,7 @@ impl Compiler {
}
}
fn compile_literal(&mut self, token: rnix::SyntaxToken) -> EvalResult<()> {
let value = rnix::value::Value::from_token(token.kind(), token.text()).expect("TODO");
fn compile_literal(&mut self, value: rnix::value::Value) -> EvalResult<()> {
match value {
rnix::NixValue::Float(f) => {
let idx = self.chunk.add_constant(Value::Float(f));