Eigenclasses are added into the inheritance hierarchy.
If multiple singleton methods are added, are these added to the same eigenclass, or different eigenclasses which are both injected into the inheritance hierarchy of that object?
For example
def foo.test
0
end
def foo.test2
0
end
Will this add 2 eigenclasses: one with a 'test' method, another with a 'test2' method? Or one eigenclass with both methods?