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
send-super can only be used once. That is, the method called by a send-super cannot itself use send-super. The reason is that the method does not know which class it belongs to. To fix this, send-super would have to take an owner argument as well as a this argument. Dunno if that's worth it.
Note that the current implementation doesn't work at all once you introduce modules.
The text was updated successfully, but these errors were encountered:
send-super
can only be used once. That is, the method called by asend-super
cannot itself usesend-super
. The reason is that the method does not know which class it belongs to. To fix this,send-super
would have to take anowner
argument as well as athis
argument. Dunno if that's worth it.Note that the current implementation doesn't work at all once you introduce modules.
The text was updated successfully, but these errors were encountered: