# File lib/rev/loop.rb, line 86 86: def run 87: raise RuntimeError, "no watchers for this loop" if @watchers.empty? 88: 89: @running = true 90: while @running and not @active_watchers.zero? 91: run_once 92: end 93: end