# File lib/onfire/event.rb, line 25
      def bubble!
        node = source
        # in a real visitor pattern, the visited would call #process_node.
        begin process_node(node) end while node = node.parent
      end