class IDL::AST::Module

def find_last

def find_last
  if @next.nil?
    self
  else
    @next.find_last
  end
end