Skip to content

Commit

Permalink
Cute update :3
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor committed Aug 3, 2024
1 parent 4921a4c commit c356b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maeel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ fn lex_into_tokens(code: &str, file: &str) -> Vec<TokenData> {
temp_tokens = Vec::default();
}
(Token::Symbol(')'), _, _) /* Something is done, lets figure out what it is :3 */ => {
let mut nested_tokens = temp_tokens.clone(); /* This operation must be veryyy expensive in time/memory usage */
let mut nested_tokens = temp_tokens.clone();

match stack.pop() {
Some(previous_tokens) /* Finished to parse the code block inside current code block */ => {
Expand Down

0 comments on commit c356b81

Please sign in to comment.