blob: 5ff74753219afa5e0929a21e49bb0a8f1db4c122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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
|