temporarly fixed parser to not error on compile (still not fixed)

This commit is contained in:
herbglitch 2024-11-29 14:59:19 -07:00
parent 68c2fc7afb
commit 6d64a17b1d
3 changed files with 16 additions and 37 deletions

View file

@ -58,23 +58,17 @@ ARC_ParserTag testTags[3] = {
{
VARIABLE, //tagId
variableTokensOrTags, //tokensOrTags
1, //tokenOrTagsSize
&addFirstCharFn, //addDataFn
NULL //addUserData
1 //tokenOrTagsSize
},
{
VARIABLE_NAME, //tagId
variableNameTags, //tokensOrTags
2, //tokenOrTagsSize
NULL, //addDataFn
NULL //addUserData
2 //tokenOrTagsSize
},
{
CHAR_OR_NUM, //tagId
charOrNumTokens, //tokensOrTags
2, //tokenOrTagsSize
&addCharFn, //addDataFn
NULL //addUserData
2 //tokenOrTagsSize
}
};