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

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.ast.AbstractVariableDeclaration


   * Method declared on BindingResolver.
   */
  synchronized IVariableBinding resolveVariable(VariableDeclaration variable) {
    final Object node = this.newAstToOldAst.get(variable);
    if (node instanceof AbstractVariableDeclaration) {
      AbstractVariableDeclaration abstractVariableDeclaration = (AbstractVariableDeclaration) node;
      if (abstractVariableDeclaration instanceof org.aspectj.org.eclipse.jdt.internal.compiler.ast.FieldDeclaration) {
        org.aspectj.org.eclipse.jdt.internal.compiler.ast.FieldDeclaration fieldDeclaration = (org.aspectj.org.eclipse.jdt.internal.compiler.ast.FieldDeclaration) abstractVariableDeclaration;
        IVariableBinding variableBinding = this.getVariableBinding(fieldDeclaration.binding, variable);
        if (variableBinding == null) {
          return null;
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.compiler.ast.AbstractVariableDeclaration

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.