# File lib/core/facets/module/anonymous.rb, line 18
  def anonymous?
    # The name of an anonymous class is an empty
    # string in 1.8, and nil in 1.9.
    name.nil? || name.empty?
  end