rpau / javalang-compiler

Java compiler elements (symbol and type tables) to perform code semantic analysis
GNU Lesser General Public License v3.0
10 stars 4 forks source link

Method finding process with invalid class order analysis #5

Closed rpau closed 9 years ago

rpau commented 9 years ago

A method is currently searched looking:

1) The owner class if the scope is a inner class. 2) The owner class if the scope is an anonymous class. 3) The hierarchy type of the scope.

It should be:

1) The hierarchy type of the scope. 2) The owner class if the scope is a inner class. 3) The owner class if the scope is an anonymous class.

rpau commented 9 years ago

Solved in 2.2.1