Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Jun 11, 2023
1 parent 2b611e9 commit d08c80c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/parser/lexer/token.c
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ Token** tokenizer_string(char* data)
t = lexer_scan();
// printf("==>%s\n", token_name(t->type));
array_push(&tokens, t);
// debug_lexer("parser_scan: print_token %s", token_name(t->type));
debug_lexer("parser_scan: print_token %s", token_name(t->type));
if (t->type == TOKEN_ERROR)
{
printf("Error: %s\n", t->value);
Expand Down
2 changes: 1 addition & 1 deletion test/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

FLAGS="-o"
FILES="../src/builtins/array.c ../src/builtins/error.c ../src/builtins/file.c ../src/ast/ast.c ../src/parser/parser.c ../src/parser/parser_token.c ../src/lexer/lexer.c ../src/lexer/tokenizer/token.c ../src/lexer/tokenizer/tokenizer.c -lLLVM-12 -D_ONE_TEST_"
FILES="../src/builtins/array.c ../src/builtins/error.c ../src/builtins/file.c ../src/ast/ast.c ../src/parser/parser.c ../src/parser/parser_token.c ../src/parser/lexer/lexer.c ../src/parser/lexer/token.c -lLLVM-12 -D_ONE_TEST_"
CC="clang"

# compile argument
Expand Down

0 comments on commit d08c80c

Please sign in to comment.