use of meghanada.typeinfo.TypeInfoSearcher in project meghanada-server by mopemope.
the class Session method typeInfo.
public Optional<TypeInfo> typeInfo(final String path, final int line, final int column, final String symbol) throws IOException, ExecutionException {
boolean b = this.changeProject(path);
final TypeInfoSearcher searcher = this.getTypeInfoSearcher();
return searcher.search(new File(path), line, column, symbol);
}
Aggregations