class Steep::AST::Types::Class

def self.instance

def self.instance
  @instance ||= new()
end

def ==(other)

def ==(other)
  other.is_a?(Class)
end

def free_variables

def free_variables
  @@fvs
end

def hash

def hash
  self.class.hash
end

def initialize(location: nil)

def initialize(location: nil)
  @location = location
end

def level

def level
  [0]
end

def subst(s)

def subst(s)
  if s.module_type
    s.module_type
  else
    self
  end
end

def to_s

def to_s
  "class"
end

def with_location(new_location)

def with_location(new_location)
  self.class.new(location: new_location)
end