Skip to content

Commit

Permalink
Update parse.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
silas-wr authored Jul 22, 2024
1 parent 130562e commit 0ddb4c2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/crate/parse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Program parse(vector<Token> tlist) {
for (int i = 0; i < size(tlist); i++) {
tok = tlist.at(i);

cout << "\nToken " << i << " of type " << tok.ttype << ": " << tok.value << " with load_type " << load_type << "\n";

switch (tok.ttype) {
case 103: // what to do with end-of-lines
if (eol) {
Expand Down

0 comments on commit 0ddb4c2

Please sign in to comment.