The method comment states that aBlock could receive up to 3 arguments:
SpDropListPresenter>>whenSelectionChangedDo: aBlock
"Inform when the selection is changed.
The method should be used only if you are interested in the fact that there was
a change, without caring about what has changed.
If you are interested in the items, use `SpDropListPresenter>>#whenSelectedItemChanged:`
`aBlock` receive 3 optional arguments:
- new value
- old value
- announcement triggered"
However, when 2 arguments are passed, an ArgumentsCountMismatch exception is raised.
The method comment states that aBlock could receive up to 3 arguments:
However, when 2 arguments are passed, an ArgumentsCountMismatch exception is raised.
How to reproduce: