Method: YARD::Parser::SourceParser.after_parse_list
- Defined in:
- lib/yard/parser/source_parser.rb
.after_parse_list {|files, globals| ... } ⇒ Proc
Registers a callback to be called after a list of files is parsed via parse. The block passed to this method will be called on subsequent parse calls.
255 256 257 |
# File 'lib/yard/parser/source_parser.rb', line 255 def after_parse_list(&block) after_parse_list_callbacks << block end |