Examples of IAst


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
Copyright © 2018 www.massapi.com. 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.