Lines Matching refs:loops
50 # Check loops
182 self.loops = [ ] # Currently active loops
183 self.loopend= { } # Mapping saying where loops end
264 if not self.loops or self.loops[-1][0] != self.pc:
270 self.loops.append((self.pc,stepval))
274 stepval = ('NUM',self.loops[-1][1])
277 if self.loops[-1][1] < 0: relop = '>='
282 self.loops.pop()
287 if not self.loops:
292 self.pc = self.loops[-1][0]