class Molinillo::DependencyGraph::Log

def each

Other tags:
    Yield: -
def each
  return enum_for unless block_given?
  action = @first_action
  loop do
    break unless action
    yield action
    action = action.next
  end
  self
end