You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO// Find all non-contextual lexemes that are literals (we call them 'keywords')// This assumes that this is the only possible conflict in the lexer that we want to catch.// For every non literals lexeme, find all keywords that match it.// Replace the regex R for the lexeme with (R & ~(K1|K2|...)) where K1...// are the conflicting keywords.pubfn to_regex_vec(&self,limits:&mutParserLimits) -> Result<RegexVec>{
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: