You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given the below C# code, we should end up with two different cases. One if a is a uint, the other if a is an int. However the outputted Luau code only creates one case, CS.is(a, "number"). Number types should actually have a runtime check for their respective type instead of just number.
Given the below C# code, we should end up with two different cases. One if
a
is auint
, the other ifa
is anint
. However the outputted Luau code only creates one case,CS.is(a, "number")
. Number types should actually have a runtime check for their respective type instead of justnumber
.The text was updated successfully, but these errors were encountered: