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
Cannot call base class magic method ( metamethod ) like BaseClass.__tostring or BaseClass.__eq .. That's very usefull feature for creating inheritance.
We can simply extending base/super class metamethod likes:
...
Thats = class('Thats', Base)
function Thats:__tostring()
return Base.__tostring(self)
end
Thank.
The text was updated successfully, but these errors were encountered:
Cannot call base class magic method ( metamethod ) like
BaseClass.__tostring
orBaseClass.__eq
.. That's very usefull feature for creating inheritance.We can simply extending base/super class metamethod likes:
Thank.
The text was updated successfully, but these errors were encountered: