mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00
20 lines
316 B
Ruby
20 lines
316 B
Ruby
# frozen_string_literal: true
|
|
##
|
|
# A horizontal rule with a weight
|
|
|
|
class RDoc::Markup::Rule < Struct.new :weight
|
|
|
|
##
|
|
# Calls #accept_rule on +visitor+
|
|
|
|
def accept(visitor)
|
|
visitor.accept_rule self
|
|
end
|
|
|
|
def pretty_print(q) # :nodoc:
|
|
q.group 2, '[rule:', ']' do
|
|
q.pp weight
|
|
end
|
|
end
|
|
|
|
end
|