diff --git a/src/Statements.c b/src/Statements.c index 258d9e9..bfce785 100644 --- a/src/Statements.c +++ b/src/Statements.c @@ -251,6 +251,8 @@ struct ASTNode* ParseIdentifier() { VerifyToken(TY_IDENTIFIER, "ident"); + printf("After parsing, the identifier name is %s, id %d in the symbol table.\n", CurrentIdentifier, FindSymbol(CurrentIdentifier)); + if(CurrentToken.type == LI_LPARE) return CallFunction();