# File lib/yard/handlers/ruby/legacy/class_condition_handler.rb, line 72
  def parse_else_block
    return unless statement.block
    stmtlist = YARD::Parser::Ruby::Legacy::StatementList
    stmtlist.new(statement.block).each do |stmt|
      if TkELSE === stmt.tokens.first
        push_state(:visibility => visibility) do
          parser.process(stmtlist.new(stmt.block))
        end
      end
    end
  end