summaryrefslogtreecommitdiff
path: root/test/files/run/t8437
Commit message (Collapse)AuthorAgeFilesLines
* SI-8437 macro runtime now also picks inherited macro implementationsEugene Burmako2014-03-252-0/+22
Previously it didn't matter much that we used Class.getDeclaredMethods instead of just getMethods, but with the introduction of macro bundles it can make a difference which is fixed in this commit. I'd also like to note that the fact that getMethods only returns public methods and getDeclaredMethods also sees private methods, doesn't make a difference, because macro implementations must be public.