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

undef ToString fix

This commit is contained in:
Brian Fiete 2021-02-01 05:34:49 -08:00
parent 518c9773f3
commit aa21020255
2 changed files with 3 additions and 1 deletions

View file

@ -1356,6 +1356,7 @@ void BeDumpContext::ToString(StringImpl& str, BeValue* value, bool showType, boo
str += " ";
}
str += "undef";
return;
}
if (auto constant = BeValueDynCast<BeCastConstant>(value))