# File lib/parslet/bytecode/compiler.rb, line 104
    def visit_repetition(tag, min, max, parslet)
      add SetupRepeat.new(tag)
      start = current_address
      parslet.accept(self)
      add Repeat.new(min, max, start, parslet)
    end