Method: JsDuck::Process::Fires#process_all!
- Defined in:
- lib/jsduck/process/fires.rb
#process_all! ⇒ Object
Populates @fires tags with additional events.
20 21 22 23 24 25 26 27 |
# File 'lib/jsduck/process/fires.rb', line 20 def process_all! @relations.each do |cls| cls.find_members(:tagname => :method, :static => false).each do |m| @call_chain = {m[:name] => true} detect_fires(cls, m) end end end |