mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-14 09:18:09 +00:00
start meta tokens correctly
This commit is contained in:
@@ -2493,6 +2493,11 @@ txt_token_array_from_data(Arena *arena, TXT_LangKind lang_kind, TXT_TokenPt ctx_
|
||||
active_token_kind = TXT_TokenKind_BlockComment;
|
||||
advance = 2;
|
||||
}
|
||||
else if(byte == '#')
|
||||
{
|
||||
active_token_kind = TXT_TokenKind_Meta;
|
||||
advance = 1;
|
||||
}
|
||||
else if(byte == '~' || byte == '!' ||
|
||||
byte == '%' || byte == '^' ||
|
||||
byte == '&' || byte == '*' ||
|
||||
|
||||
Reference in New Issue
Block a user