~ubuntu-branches/ubuntu/trusty/aspectj/trusty

« back to all changes in this revision

Viewing changes to org.aspectj/modules/org.aspectj.matcher/src/org/aspectj/weaver/patterns/ConcreteCflowPointcut.java

  • Committer: Package Import Robot
  • Author(s): tony mancill, tony mancill
  • Date: 2011-12-11 22:23:10 UTC
  • mfrom: (1.1.6) (7.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20111211222310-0ximj0wavqutojge
Tags: 1.6.12+dfsg-2
[ tony mancill ]
* Team upload.
* Apply JDK7 FTBFS patch (Closes: #651238)

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
                                for (Iterator i = slots.iterator(); i.hasNext();) {
130
130
                                        Slot slot = (Slot) i.next();
131
131
                                        // System.out.println("slot: " + slot.formalIndex);
132
 
                                        state.set(slot.formalIndex, aspect.getWorld().getWeavingSupport().makeCflowAccessVar(slot.formalType,
133
 
                                                        cflowField, slot.arrayIndex));
 
132
                                        state.set(slot.formalIndex,
 
133
                                                        aspect.getWorld().getWeavingSupport().makeCflowAccessVar(slot.formalType, cflowField, slot.arrayIndex));
134
134
                                }
135
135
                        }
136
136
                        return Test.makeFieldGetCall(cflowField, cflowStackIsValidMethod, Expr.NONE);
138
138
        }
139
139
 
140
140
        private static final Member cflowStackIsValidMethod = MemberImpl.method(NameMangler.CFLOW_STACK_UNRESOLVEDTYPE, 0,
141
 
                        ResolvedType.BOOLEAN, "isValid", UnresolvedType.NONE);
 
141
                        UnresolvedType.BOOLEAN, "isValid", UnresolvedType.NONE);
142
142
 
143
143
        private static final Member cflowCounterIsValidMethod = MemberImpl.method(NameMangler.CFLOW_COUNTER_UNRESOLVEDTYPE, 0,
144
 
                        ResolvedType.BOOLEAN, "isValid", UnresolvedType.NONE);
 
144
                        UnresolvedType.BOOLEAN, "isValid", UnresolvedType.NONE);
145
145
 
146
146
        public Pointcut concretize1(ResolvedType inAspect, ResolvedType declaringType, IntMap bindings) {
147
147
                throw new RuntimeException("unimplemented");