Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor and Add Type Handling in AST #68

Merged
merged 6 commits into from
Jan 23, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove EOF
  • Loading branch information
LunaStev committed Jan 21, 2025
commit dcd3ffc2b90e1ec49174184773fe37823a42bddb
2 changes: 1 addition & 1 deletion src/parser/parser.rs
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ pub fn extract_body<'a>(tokens: &mut Peekable<Iter<'a, Token>>) -> Vec<ASTNode>

while let Some(token) = tokens.next() {
match &token.token_type {
TokenType::EOF => break,
/*
TokenType::VAR => {
if let Some(ast_node) = parse_var(tokens) {
body.push(ast_node);