Details
Description
In some case, an UnresolveablePropertyException is raised when accessing the "size()" property on List coming from Collections' methods
I looks like MVEL resolve the property to the size() method of the Collections' private implementation class and not to the one of the List interface. Then, when the method is invoked, access is denied because of the method's declaring class being "hidden" (private inner class) in Collections.
fixed trunk.