Method: RedShift::World::ZenoDebugger#report_zeno

Defined in:
lib/redshift/mixins/zeno-debugger.rb

#report_zenoObject

Reports to zeno_output the list of active components.



61
62
63
64
65
66
67
# File 'lib/redshift/mixins/zeno-debugger.rb', line 61

def report_zeno
  f = zeno_output
  active = zeno_watch_list || curr_T

  f << HEADER % [zeno_counter, components.size, curr_T.size]
  f << '  ' + active.map{|c|c.inspect}.join("\n  ") + "\n"
end