1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Nullable fixes for ??

This commit is contained in:
Brian Fiete 2019-12-13 14:23:06 -08:00
parent 8b17718fed
commit ad11792940
2 changed files with 14 additions and 1 deletions

View file

@ -1559,7 +1559,7 @@ const char* Beefy::BfGetOpName(BfBinaryOp binOp)
case BfBinaryOp_Compare: return "<=>";
case BfBinaryOp_ConditionalAnd: return "&&";
case BfBinaryOp_ConditionalOr: return "||";
case BfBinaryOp_NullCoalesce: return "&&";
case BfBinaryOp_NullCoalesce: return "??";
case BfBinaryOp_Is: return "is";
case BfBinaryOp_As: return "as";
default: return "???";