# File lib/json/editor.rb, line 166
      def recursive_each(&block)
        yield self
        each do |i|
          i.recursive_each(&block)
        end
      end