Search in sources :

Example 1 with TypeInfoSearcher

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);
}
Also used : TypeInfoSearcher(meghanada.typeinfo.TypeInfoSearcher) File(java.io.File)

Aggregations

File (java.io.File)1 TypeInfoSearcher (meghanada.typeinfo.TypeInfoSearcher)1