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.
1 parent 3bd29ea commit f8aed6bCopy full SHA for f8aed6b
src/test/scala/com/typesafe/genjavadoc/SignatureSpec.scala
@@ -60,7 +60,7 @@ class SignatureSpec {
60
val scalac = new GenJavadocCompiler(Seq(
61
s"genjavadoc:out=$docPath",
62
"genjavadoc:suppressSynthetic=false"
63
- ), rangepos = false)
+ ), rangepos = true)
64
65
val javaSources = expectedClasses.map{cls =>
66
docPath + "/" + cls.replace(".", "/") + ".java"
src/test/scala/com/typesafe/genjavadoc/util/CompilerSpec.scala
@@ -21,7 +21,7 @@ trait CompilerSpec {
21
def extraSettings: Seq[String] = Seq.empty
22
23
/** whether to enable -Yrangepos */
24
- def rangepos: Boolean = false
+ def rangepos: Boolean = true
25
26
@Test def compileSourcesAndGenerateExpectedOutput(): Unit = {
27
val doc = IO.tempDir("java")
0 commit comments