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
This work will remove guards that check to see if a Value is a TableObject just before we make an attempt to invoke the Array.Len().
Once we after we are able to properly represent TableObjects separately from standard array objects, the type assertions should be redundant. At that point, hopefully both the compiler and humans will be able to tell the difference between these two types.
The text was updated successfully, but these errors were encountered:
Now that the type system can distinguish between streams (aka tables)
and vanilla arrays we no longer need the TableObject interface and its
associated type guards.
Fixes#4343
Now that the type system can distinguish between streams (aka tables)
and vanilla arrays we no longer need the TableObject interface and its
associated type guards.
Fixes#4343
Now that the type system can distinguish between streams (aka tables)
and vanilla arrays we no longer need the TableObject interface and its
associated type guards.
Fixes#4343
This work will remove guards that check to see if a
Value
is aTableObject
just before we make an attempt to invoke theArray.Len()
.Once we after we are able to properly represent
TableObject
s separately from standardarray
objects, the type assertions should be redundant. At that point, hopefully both the compiler and humans will be able to tell the difference between these two types.The text was updated successfully, but these errors were encountered: