# File lib/liquid/block.rb, line 91
    def render_all(list, context)
      list.collect do |token|
        begin
          token.respond_to?(:render) ? token.render(context) : token
        rescue Exception => e
          context.handle_error(e)
        end
      end
    end