aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/core/NameKinds.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2017-03-31 14:17:16 +0200
committerMartin Odersky <odersky@gmail.com>2017-04-11 09:33:12 +0200
commita3f6ca5a5cd96e17d2f9a9c5187f45ff02b5dd61 (patch)
tree5c6180be4cb80978555ebe99ac0f00837e77e70f /compiler/src/dotty/tools/dotc/core/NameKinds.scala
parente3e5e79e24503a2e6be7f708d81c27068664b893 (diff)
downloaddotty-a3f6ca5a5cd96e17d2f9a9c5187f45ff02b5dd61.tar.gz
dotty-a3f6ca5a5cd96e17d2f9a9c5187f45ff02b5dd61.tar.bz2
dotty-a3f6ca5a5cd96e17d2f9a9c5187f45ff02b5dd61.zip
Make module var names semantic
Diffstat (limited to 'compiler/src/dotty/tools/dotc/core/NameKinds.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/core/NameKinds.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/src/dotty/tools/dotc/core/NameKinds.scala b/compiler/src/dotty/tools/dotc/core/NameKinds.scala
index 706320938..8279c21bb 100644
--- a/compiler/src/dotty/tools/dotc/core/NameKinds.scala
+++ b/compiler/src/dotty/tools/dotc/core/NameKinds.scala
@@ -250,6 +250,7 @@ object NameKinds {
val AvoidClashName = new SuffixNameKind(AVOIDCLASH, "$_avoid_name_clash_$")
val DirectName = new SuffixNameKind(DIRECT, "$direct")
val FieldName = new SuffixNameKind(FIELD, "$$local")
+ val ModuleVarName = new SuffixNameKind(OBJECTVAR, "$module")
val ModuleClassName = new SuffixNameKind(OBJECTCLASS, "$", optInfoString = "ModuleClass")
object SignedName extends NameKind(63) {