# File nqxml/dispatcher.rb, line 59 def handle(event,*nest,&block) unless block raise ArgumentError, "Missing code block" end context = nest.flatten.map do |n| n = n.to_s end @jump_tables[event] ||= {} @jump_tables[event][context] = block end