We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 79321bd + 72a191f commit f3829d1Copy full SHA for f3829d1
compiler/src/dotty/tools/dotc/core/NameOps.scala
@@ -28,7 +28,7 @@ object NameOps {
28
def apply(s: String): String = {
29
val marker = "$$$$"
30
31
- final val charLimit: Int = 240
+ val charLimit: Int = 240
32
val MaxNameLength = (charLimit - 6) min 2 * (charLimit - 6 - 2 * marker.length - 32)
33
34
def toMD5(s: String, edge: Int): String = {
sbt-dotty/sbt-test/source-dependencies/compactify/build.sbt
@@ -2,4 +2,4 @@ TaskKey[Unit]("output-empty") := {
2
val outputDirectory = (classDirectory in Compile).value
3
val classes = (outputDirectory ** "*.class").get
4
if (classes.nonEmpty) sys.error("Classes existed:\n\t" + classes.mkString("\n\t")) else ()
5
-}
+}
0 commit comments