aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/StdNames.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core/StdNames.scala')
-rw-r--r--src/dotty/tools/dotc/core/StdNames.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dotty/tools/dotc/core/StdNames.scala b/src/dotty/tools/dotc/core/StdNames.scala
index e82260201..c767f4c29 100644
--- a/src/dotty/tools/dotc/core/StdNames.scala
+++ b/src/dotty/tools/dotc/core/StdNames.scala
@@ -529,9 +529,7 @@ object StdNames {
val synthSwitch: N = "$synthSwitch"
- val hkApplyOBS: N = "$Apply"
val hkArgPrefix: N = "$hk"
- val hkLambdaPrefixOBS: N = "Lambda$"
val hkArgPrefixHead: Char = hkArgPrefix.head
val hkArgPrefixLength: Int = hkArgPrefix.length
@@ -744,12 +742,8 @@ object StdNames {
def syntheticTypeParamNames(num: Int): List[TypeName] =
(0 until num).map(syntheticTypeParamName)(breakOut)
- def hkLambdaOBS(vcs: List[Int]): TypeName = hkLambdaPrefixOBS ++ vcs.map(varianceSuffixOBS).mkString
def hkArg(n: Int): TypeName = hkArgPrefix ++ n.toString
- def varianceSuffixOBS(v: Int): Char = varianceSuffixesOBS.charAt(v + 1)
- val varianceSuffixesOBS = "NIP"
-
final val Conforms = encode("<:<")
}