Package org.aspectj.ajdt.internal.compiler.lookup

Examples of org.aspectj.ajdt.internal.compiler.lookup.EclipseScope


 
  public Declare build(ClassScope classScope) {
    if (declareDecl == null) return null;
       
        EclipseScope scope = new EclipseScope(new FormalBinding[0], classScope);

        declareDecl.resolve(scope);
        return declareDecl;
  }
View Full Code Here


    resolvePerClause(); //XXX might be too soon for some error checking
  }


  private PerClause resolvePerClause() {       
        EclipseScope iscope = new EclipseScope(new FormalBinding[0], scope);
    perClause.resolve(iscope);
    return perClause;
  }
View Full Code Here

TOP

Related Classes of org.aspectj.ajdt.internal.compiler.lookup.EclipseScope

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.