One more thing that has frequently crossed my mind.
According to my understanding methods are identified solely by their name (in edition 3).

So it is illegal to have two methods like

<method name="foo" args="a1">
...
</method>

<method name="foo" args="a1, a2">
...
</method>

Now that edition 4 requires always using the right amount of arguments (and even adds types to arguments) are the methods identified there by their name plus their argument list (like in java for example) or are they still identified solely by their name?

- rami

Reply via email to