Class: YARD::Parser::Ruby::ConditionalNode
Managing node state
collapse
Instance Method Details
#condition ⇒ Object
517
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 517
def condition; first end
|
#condition? ⇒ Boolean
516
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 516
def condition?; true end
|
#else_block ⇒ Object
520
521
522
523
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 520
def else_block
return unless self[2] && !cmod?
self[2].type == :elsif ? self[2] : self[2][0]
end
|
#then_block ⇒ Object
518
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 518
def then_block; self[1] end
|