1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

'not case' expression, case variable scope change

This commit is contained in:
Brian Fiete 2025-02-22 09:56:39 -08:00
parent 471897a150
commit 5feb0c044b
15 changed files with 133 additions and 19 deletions

View file

@ -1461,6 +1461,8 @@ const char* Beefy::BfTokenToString(BfToken token)
return "namespace";
case BfToken_New:
return "new";
case BfToken_Not:
return "not";
case BfToken_Null:
return "null";
case BfToken_Nullable: