Package dtool.ast

Examples of dtool.ast.ASTNodeFinder


    protected Reference pickedRef;
    public Collection<INamedElement> resolvedDefUnits;
    public boolean invalidPickRef = false;
   
    public void pickLocation(Module module, int offset) {
      ASTNodeFinder nodeFinder = new ASTNodeFinder(module, offset, true);
     
      if(nodeFinder.matchOnLeft instanceof Reference) {
        this.pickedNode = nodeFinder.matchOnLeft;
        this.pickedRef = (Reference) pickedNode;
      } else if(nodeFinder.match instanceof Reference) {
View Full Code Here

TOP

Related Classes of dtool.ast.ASTNodeFinder

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.