Package org.aspectj.weaver.patterns

Examples of org.aspectj.weaver.patterns.ExposedState


        ((BcelShadow)shadow).initializeForAroundClosure();
      }
     
      //XXX this case is just here for supporting lazy test code
      if (getKind() == null) {
      exposedState = new ExposedState(0);
        return;
      }
      if (getKind().isPerEntry()) {
        exposedState = new ExposedState(0);
      } else if (getKind().isCflow()) {
        exposedState = new ExposedState(nFreeVars);
      } else if (getSignature() != null) {
      exposedState = new ExposedState(getSignature());
      } else {
        exposedState = new ExposedState(0);
        return//XXX this case is just here for supporting lazy test code
      }
     
      World world = shadow.getIWorld();
      suppressLintWarnings(world);
View Full Code Here

TOP

Related Classes of org.aspectj.weaver.patterns.ExposedState

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.