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
There seems to be a problem with the design of the is method.
You can't do things like nil:is(SomeType)
This makes it pretty much useless for type checking as you have to guarantee that class variables are never nil.
I tried implementing it as a helper function with a little change...
There seems to be a problem with the design of the
is
method.You can't do things like
nil:is(SomeType)
This makes it pretty much useless for type checking as you have to guarantee that class variables are never nil.
I tried implementing it as a helper function with a little change...
but it has the same problem.
Maybe there is a way to get around it?
This would also effect #20
The text was updated successfully, but these errors were encountered: