Subject: | Traverse improved, but still incorrect |
The traverse function for Tree::MultiNode is not implemented correctly.
The call to $subref in line 1206 should read:
$subref->($self, @args);
rather than:
$subref->(@args, $self);
to be consistent with the example given in the documentation.