class YARD::Handlers::Ruby::Legacy::ClassConditionHandler

def parse_else_block

Other tags:
    Since: - 0.5.5
def parse_else_block
  return unless statement.block
  stmtlist = YARD::Parser::Ruby::Legacy::StatementList
  stmtlist.new(statement.block).each do |stmt|
    next unless TkELSE === stmt.tokens.first
    push_state(:visibility => visibility) do
      parser.process(stmtlist.new(stmt.block))
    end
  end
end