Package lpg.runtime

Examples of lpg.runtime.IAst


  }

  @Override
  public IPath getPath(final Object node) {
    if (node instanceof IAst) {
      IAst node1 = (IAst) node;
      return this.fParseController.getProject().getRawProject().getFile(
          node1.getLeftIToken().getILexStream().getFileName())
          .getFullPath();
    }
    if (node instanceof ICompilationUnit) {
      ICompilationUnit cu = (ICompilationUnit) node;
      return cu.getPath();
View Full Code Here

TOP

Related Classes of lpg.runtime.IAst

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.