Change Cart AssignableKind to Index.

pull/2/head
ondra05 2021-10-13 13:20:23 +02:00
parent 88e65ff2a4
commit 83e3ea9283
3 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ pub struct Assignable {
#[derive(Debug, PartialEq, Clone, Hash)]
pub enum AssignableKind {
Variable,
Cart { indices: Vec<Expr> },
Index { indices: Vec<Expr> },
}
#[derive(Debug, PartialEq, Clone, Hash)]

View File

@ -248,9 +248,9 @@ impl ExecEnv {
let value = self.eval_expr(value)?;
match assignable.kind {
AssignableKind::Variable => {
&self.get_var_mut(&assignable.ident)?.value.replace(value);
self.get_var_mut(&assignable.ident)?.value.replace(value);
}
AssignableKind::Cart { ref indices } => {
AssignableKind::Index { ref indices } => {
let mut cell = self.get_var_rc(&assignable.ident)?;
for index in indices {
let index = self.eval_expr(index)?;

View File

@ -412,7 +412,7 @@ impl<'source> Parser<'source> {
indices.reverse();
Some(Assignable {
ident: Ident::new(ident, buf.span),
kind: AssignableKind::Cart { indices },
kind: AssignableKind::Index { indices },
})
}