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

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


  }
 
  public static SingleNameReference makeLocalVariableReference(
      LocalVariableBinding binding)
  {
    SingleNameReference ret = new SingleNameReference(binding.name, 0);
    ret.binding = binding;
    ret.codegenBinding = binding;
    ret.constant = ASTNode.NotAConstant;
    ret.bits &= ~ASTNode.RestrictiveFlagMASK;  // clear bits
    ret.bits |= Binding.VARIABLE;
View Full Code Here


  }
 
  public static SingleNameReference makeResolvedLocalVariableReference(
      LocalVariableBinding binding)
  {
    SingleNameReference ret = new SingleNameReference(binding.name, 0);
    ret.binding = binding;
    ret.codegenBinding = binding;
    ret.constant = ASTNode.NotAConstant;
    ret.bits &= ~ASTNode.RestrictiveFlagMASK;  // clear bits
    ret.bits |= Binding.LOCAL;
View Full Code Here

TOP

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

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.