Package com.googlecode.goclipse.tooling

Examples of com.googlecode.goclipse.tooling.GoPackagesVisitor


    Path goPathEntry = findGoPathEntry(path);
    if(goPathEntry == null) {
      return new HashSet<>();
    }
   
    GoPackagesVisitor goPackagesVisitor = new GoPackagesVisitor(goPathEntry, listFrom(path)) {
     
      @Override
      protected FileVisitResult handleFileVisitException(Path file, IOException exc) {
        // TODO: some sort of logging
        return FileVisitResult.CONTINUE;
      }
    };
   
    return goPackagesVisitor.getModuleNames();
  }
View Full Code Here

TOP

Related Classes of com.googlecode.goclipse.tooling.GoPackagesVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.