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

Bug in computing the name of deeper embedded classes #7

Closed rpau closed 8 years ago

rpau commented 8 years ago

Bug in computing the name of deeper embedded classes

"The referenced class xxx.pub.SearchModule.ExtendedSearchHandler$ESResult does not exist."

What exists is pub/SearchModule$ExtendedSearchHandler$ESResult.class

The import is

import nads.pixelbox.client.mod.search.pub.SearchModule.ExtendedSearchHandler.ESResult;

public class SearchModule { public static interface ExtendedSearchHandler { public static class ESResult {