scala.reflect.macros.contexts.Names.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-compiler Show documentation
Show all versions of scala-compiler Show documentation
Compiler for the Scala Programming Language
The newest version!
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala.reflect.macros
package contexts
trait Names {
self: Context =>
import global._
def freshNameCreator = self.callsiteTyper.fresh
def fresh(): String =
freshName()
def fresh(name: String): String =
freshName(name)
def fresh[NameType <: Name](name: NameType): NameType =
freshName[NameType](name)
def freshName(): String =
freshName(nme.FRESH_PREFIX)
def freshName(name: String): String = {
// In comparison with the first version of freshName, current "fresh" names
// at least can't clash with legible user-written identifiers and are much less likely to clash with each other.
// It is still not good enough however, because the counter gets reset every time we create a new Global.
//
// This would most certainly cause problems if Scala featured something like introduceTopLevel,
// but even for def macros this can lead to unexpected troubles. Imagine that one Global
// creates a term of an anonymous type with a member featuring a "fresh" name, and then another Global
// imports that term with a wildcard and then generates a "fresh" name of its own. Given unlucky
// circumstances these "fresh" names might end up clashing.
//
// TODO: hopefully scala/bug#7823 will provide an ultimate answer to this problem.
// In the meanwhile I will also keep open the original issue: scala/bug#6879 "c.freshName is broken".
val prefix: String = if (name.endsWith("$")) name else name + "$" // scala/bug#8425
val sortOfUniqueSuffix: Any = freshNameCreator.newName(nme.FRESH_SUFFIX)
prefix + sortOfUniqueSuffix
}
def freshName[NameType <: Name](name: NameType): NameType =
name.mapName(freshName(_)).asInstanceOf[NameType]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy