Method: YARD::Handlers::Ruby::Legacy::Base#parse_block
- Defined in:
- lib/yard/handlers/ruby/legacy/base.rb
#parse_block(opts = {}) ⇒ Object
Parses a statement’s block with a set of state values. If the statement has no block, nothing happens. A description of state values can be found at Base#push_state
35 36 37 38 39 40 41 42 |
# File 'lib/yard/handlers/ruby/legacy/base.rb', line 35 def parse_block(opts = {}) push_state(opts) do if statement.block blk = Parser::Ruby::Legacy::StatementList.new(statement.block) parser.process(blk) end end end |