AST - Store variable names as tokens in declarations

This commit is contained in:
Emmanuel BENOîT 2022-12-31 16:06:20 +01:00
parent 90557e6600
commit 157c938395
2 changed files with 4 additions and 4 deletions

View file

@ -105,7 +105,7 @@ impl Parser {
&TokenType::Semicolon,
"expected ';' after variable declaration",
)?;
Ok(ast::StmtNode::VarDecl(name.lexeme, initializer))
Ok(ast::StmtNode::VarDecl(name, initializer))
}
/// Parse the following rule: