1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Added support for global:: lookups

This commit is contained in:
Brian Fiete 2025-05-18 12:13:15 +02:00
parent ee50457885
commit 958a1630aa
13 changed files with 202 additions and 28 deletions

View file

@ -1611,6 +1611,8 @@ const char* Beefy::BfTokenToString(BfToken token)
return ";";
case BfToken_Colon:
return ":";
case BfToken_ColonColon:
return "::";
case BfToken_Comma:
return ",";
case BfToken_Dot: