Lexer symbols now recognise macro constants and references

This commit is contained in:
2023-11-08 18:14:41 +00:00
parent 8fa40d8515
commit 642a8ae944

View File

@@ -143,7 +143,7 @@ char uppercase(char c)
bool is_symbol(char c)
{
return isalpha(c) || isdigit(c) || c == '-' || c == '_' || c == '.' ||
c == ':';
c == ':' || c == '(' || c == ')' || c == '%' || c == '$';
}
bool is_valid_hex_char(char c)