Package org.eclipse.jdt.internal.compiler.ast

Examples of org.eclipse.jdt.internal.compiler.ast.NameReference.traverse()


    } else {
      if (argument.isReceiver()) {
        this.scribe.space();
        NameReference qualifyingName = ((Receiver) argument).qualifyingName;
        if (qualifyingName != null) {
          qualifyingName.traverse(this, scope);
          this.scribe.printNextToken(TerminalTokens.TokenNameDOT, false);
        }
        this.scribe.printNextToken(TerminalTokens.TokenNamethis, false);
      } else {
        /*
 
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.