aboutsummaryrefslogblamecommitdiff
path: root/compiler/src/dotty/tools/dotc/util/FreshNameCreator.scala
blob: 8892a570e15cb46cbf65ca241bef347aa2fbc6a1 (plain) (tree)
1
2
3
4
5
6
7
8






                               
                                          




                                          
                                                                                





                                                                           
                                           

                                                              

                                                                       


     
package dotty.tools
package dotc
package util

import scala.collection.mutable

trait FreshNameCreator {
  def newName(prefix: String = ""): String
}

object FreshNameCreator {
  class Default extends FreshNameCreator {
    protected var counter = 0
    protected val counters = mutable.AnyRefMap[String, Int]() withDefaultValue 0

    /**
     * Create a fresh name with the given prefix. It is guaranteed
     * that the returned name has never been returned by a previous
     * call to this function (provided the prefix does not end in a digit).
     */
    def newName(prefix: String): String = {
      val safePrefix = prefix.replaceAll("""[<>]""", """\$""")
      counters(safePrefix) += 1
      val counter = counters(safePrefix)
      if (prefix.isEmpty) "$" + counter + "$" else safePrefix + counter
    }
  }
}