class Parser
  def self.process(script)
    # ...
  end
  
  def self.singleton
    class << self; self; end
  end
end