still working on parser, plan to rework to parsing first, then calling struct creation callback after with vector of tokens and tags
This commit is contained in:
parent
fcc07493d3
commit
d69844dab1
9 changed files with 251 additions and 27 deletions
|
|
@ -130,6 +130,15 @@ ARC_LexerToken *ARC_Lexer_GetToken(ARC_Lexer *lexer, uint32_t index);
|
|||
*/
|
||||
uint32_t ARC_Lexer_GetTokensSize(ARC_Lexer *lexer);
|
||||
|
||||
/**
|
||||
* @brief returns a boolean based on if a lexers rules are continious
|
||||
*
|
||||
* @param[in] lexer the lexer to check if its ruls are continious
|
||||
*
|
||||
* @return ARC_True if the set rules are continious
|
||||
*/
|
||||
ARC_Bool ARC_Lexer_IsContinious(ARC_Lexer *lexer);
|
||||
|
||||
/**
|
||||
* @brief returns a boolean based on if a given id is a stored token rule id
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue