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
When we allowed object-methods to be defined they were originally written 100% in golang.
That meant that the golang-implemented methods call could work, outputting the names of all known methods. However now there are methods implemented in monkey.
We should use reflection/introspection to get all methods that work on a given-type, or we should remove the facility entirely. Having wrong results is the worst possible compromise!
The text was updated successfully, but these errors were encountered:
When we allowed object-methods to be defined they were originally written 100% in golang.
That meant that the golang-implemented
methods
call could work, outputting the names of all known methods. However now there are methods implemented in monkey.We should use reflection/introspection to get all methods that work on a given-type, or we should remove the facility entirely. Having wrong results is the worst possible compromise!
The text was updated successfully, but these errors were encountered: