Skip to content

Commit db36559

Browse files
committed
Avoid illegal characters in package objects
1 parent ed5304e commit db36559

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

compiler/src/dotty/tools/dotc/ast/Desugar.scala

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import Decorators._, transform.SymUtils._
99
import NameKinds.{UniqueName, EvidenceParamName, DefaultGetterName}
1010
import typer.FrontEnd
1111
import util.{Property, SourceFile, SourcePosition}
12+
import util.NameTransformer.avoidIllegalChars
1213
import collection.mutable.ListBuffer
1314
import reporting.diagnostic.messages._
1415
import reporting.trace
@@ -1046,10 +1047,8 @@ object desugar {
10461047
if (nestedStats.isEmpty) pdef
10471048
else {
10481049
var fileName = ctx.source.file.name
1049-
val end = fileName.lastIndexOf('.') // drop extension
1050-
val start = fileName.lastIndexOf('.', end - 1) // drop any prefix before another `.`
1051-
val sourceName = fileName.substring(start + 1, end)
1052-
val groupName = (sourceName ++ str.TOPLEVEL_SUFFIX).toTermName
1050+
val sourceName = fileName.take(fileName.lastIndexOf('.'))
1051+
val groupName = avoidIllegalChars((sourceName ++ str.TOPLEVEL_SUFFIX).toTermName.asSimpleName)
10531052
val grouped = ModuleDef(groupName, Template(emptyConstructor, Nil, Nil, EmptyValDef, nestedStats))
10541053
cpy.PackageDef(pdef)(pdef.pid, topStats :+ grouped)
10551054
}

0 commit comments

Comments
 (0)