added some temporary debugging prints

This commit is contained in:
herbglitch 2024-11-14 01:23:11 -07:00
parent fcc41aa576
commit 5c0fb00970
2 changed files with 2 additions and 1 deletions

View file

@ -139,6 +139,7 @@ ARC_Bool ARC_Parser_ParseTag(ARC_Parser *parser, uint32_t *lexerIndex, uint32_t
//if the token rule does not match the current token in the current or statement the token rule could not be found for the current or index so break
if(token.rule != tag->tokensOrTags[orIndex][tokenOrTagIndex]){
foundRule = ARC_False;
printf("%u ", token.rule);
break;
}
}