Examples of IScope


Examples of com.flansmod.common.guns.IScope

          */
          break;
        }
        case EQUIPPED_FIRST_PERSON:
        {
          IScope scope = gunType.getCurrentScope(item);
          if(FlansModClient.zoomProgress > 0.9F && scope.hasZoomOverlay())
          {
            GL11.glPopMatrix();
            return;
          }
          float adsSwitch = FlansModClient.lastZoomProgress + (FlansModClient.zoomProgress - FlansModClient.lastZoomProgress) * smoothing;//0F;//((float)Math.sin((FlansMod.ticker) / 10F) + 1F) / 2F;
View Full Code Here

Examples of com.github.sommeri.less4j.core.compiler.scopes.IScope

    semiCompiledNodes.push(node);

    try {
      List<ASTCssNode> childs = new ArrayList<ASTCssNode>(node.getChilds());
      if (!childs.isEmpty()) {
        IScope scope = iteratedScope.getScope();

        // solve all detached ruleset/mixin references and store solutions
        Map<ASTCssNode, GeneralBody> solvedReferences = solveCalls(childs, scope);

        // solve whatever is not a mixin/detached ruleset reference
View Full Code Here

Examples of org.aspectj.weaver.patterns.IScope

        // Not setting version here
        // struct.ajAttributes.add(new AjAttribute.WeaverVersionInfo());
        AjAttribute.Aspect aspectAttribute = new AjAttribute.Aspect(perClause);
        struct.ajAttributes.add(aspectAttribute);
        FormalBinding[] bindings = new org.aspectj.weaver.patterns.FormalBinding[0];
        final IScope binding;
        binding = new BindingScope(struct.enclosingType, struct.context, bindings);

        // // we can't resolve here since the perclause typically refers
        // to pointcuts
        // // defined in the aspect that we haven't told the
View Full Code Here

Examples of org.aspectj.weaver.patterns.IScope

        ResolvedType fieldType = UnresolvedType.forSignature(struct.field.getSignature()).resolve(
            struct.enclosingType.getWorld());
        if (fieldType.isInterface()) {
          TypePattern parent = parseTypePattern(fieldType.getName(), struct);
          FormalBinding[] bindings = new org.aspectj.weaver.patterns.FormalBinding[0];
          IScope binding = new BindingScope(struct.enclosingType, struct.context, bindings);
          // first add the declare implements like
          List<TypePattern> parents = new ArrayList<TypePattern>(1);
          parents.add(parent);
          DeclareParents dp = new DeclareParents(typePattern, parents, false);
          dp.resolve(binding); // resolves the parent and child parts
View Full Code Here

Examples of org.aspectj.weaver.patterns.IScope

      return false;
    }

    // Create the declare parents that will add the interfaces to matching targets
    FormalBinding[] bindings = new org.aspectj.weaver.patterns.FormalBinding[0];
    IScope binding = new BindingScope(struct.enclosingType, struct.context, bindings);
    // how do we mark this as a decp due to decmixin?
    DeclareParents dp = new DeclareParentsMixin(targetTypePattern, newParents);
    dp.resolve(binding);
    targetTypePattern = dp.getChild();
View Full Code Here

Examples of org.aspectj.weaver.patterns.IScope

        try {
          bindings = extractBindings(struct);
        } catch (UnreadableDebugInfoException unreadableDebugInfoException) {
          return false;
        }
        IScope binding = new BindingScope(struct.enclosingType, struct.context, bindings);

        // joinpoint, staticJoinpoint binding
        int extraArgument = extractExtraArgument(struct.method);

        Pointcut pc = null;
View Full Code Here

Examples of org.aspectj.weaver.patterns.IScope

        try {
          bindings = extractBindings(struct);
        } catch (UnreadableDebugInfoException unreadableDebugInfoException) {
          return false;
        }
        IScope binding = new BindingScope(struct.enclosingType, struct.context, bindings);

        // joinpoint, staticJoinpoint binding
        int extraArgument = extractExtraArgument(struct.method);

        Pointcut pc = null;
View Full Code Here

Examples of org.aspectj.weaver.patterns.IScope

      try {
        bindings = (returned == null ? extractBindings(struct) : extractBindings(struct, returned));
      } catch (UnreadableDebugInfoException unreadableDebugInfoException) {
        return false;
      }
      IScope binding = new BindingScope(struct.enclosingType, struct.context, bindings);

      // joinpoint, staticJoinpoint binding
      int extraArgument = extractExtraArgument(struct.method);

      // return binding
View Full Code Here

Examples of org.aspectj.weaver.patterns.IScope

      try {
        bindings = (thrownFormal == null ? extractBindings(struct) : extractBindings(struct, thrownFormal));
      } catch (UnreadableDebugInfoException unreadableDebugInfoException) {
        return false;
      }
      IScope binding = new BindingScope(struct.enclosingType, struct.context, bindings);

      // joinpoint, staticJoinpoint binding
      int extraArgument = extractExtraArgument(struct.method);

      // return binding
View Full Code Here

Examples of org.aspectj.weaver.patterns.IScope

        try {
          bindings = extractBindings(struct);
        } catch (UnreadableDebugInfoException unreadableDebugInfoException) {
          return false;
        }
        IScope binding = new BindingScope(struct.enclosingType, struct.context, bindings);

        // joinpoint, staticJoinpoint binding
        int extraArgument = extractExtraArgument(struct.method);

        Pointcut pc = null;
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.