scala.tools.nsc.tasty.bridge.NameOps.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.tools.nsc.tasty.bridge
import scala.tools.tasty.TastyName
import scala.tools.nsc.tasty.TastyUniverse
/**This layer handles encoding of [[TastyName]] to [[symbolTable.Name]], escaping any specially handled names.
* Also contains definitions of names for handling special compiler internal symbols from TASTy.
*/
trait NameOps { self: TastyUniverse =>
import self.{symbolTable => u}
import TastyName._
private def encodeAsTermName(tastyName: TastyName): u.TermName = tastyName match {
case Empty => u.termNames.EMPTY
case Constructor => u.nme.CONSTRUCTOR
case EmptyPkg => u.nme.EMPTY_PACKAGE_NAME
case Root => u.nme.ROOT
case WildcardName() => u.nme.WILDCARD
case name => u.TermName(name.encoded)
}
private def encodeAsTypeName(tastyName: TypeName): u.TypeName = tastyName match {
case RepeatedClass => u.tpnme.REPEATED_PARAM_CLASS_NAME
case name => encodeAsTermName(name.toTermName).toTypeName
}
def encodeTypeName(name: TypeName): u.TypeName = encodeAsTypeName(name)
def encodeTermName(name: TastyName): u.TermName = encodeAsTermName(name.stripSignedPart)
def encodeTastyName(name: TastyName): u.Name = name match {
case name: TypeName => encodeTypeName(name)
case name => encodeTermName(name)
}
object tpnme {
final val Or: TypeName = TastyName.SimpleName("|").toTypeName
final val And: TypeName = TastyName.SimpleName("&").toTypeName
final val AnyKind: TypeName = TastyName.SimpleName("AnyKind").toTypeName
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy