summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-10-03 09:18:41 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-10-03 15:47:44 +0200
commitb090f9748fff915df82f2a4908e7075f5cf1c91c (patch)
tree4fa73d26b8a3dad8dcf6b36e0bf7e37c83be2ca5 /test/files/run
parent8aae23ed47c4e38a465ff3373392484ca82473d1 (diff)
downloadscala-b090f9748fff915df82f2a4908e7075f5cf1c91c.tar.gz
scala-b090f9748fff915df82f2a4908e7075f5cf1c91c.tar.bz2
scala-b090f9748fff915df82f2a4908e7075f5cf1c91c.zip
Rework cff8b569 to heal the windows build.
- change newTermName to fix negative length names rather than reject them - restore the old logic in unspecializedName for names that result from AnyRef specialized type parameters. Why does fix the windows build? I remain none the wiser.
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/global-showdef.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/global-showdef.scala b/test/files/run/global-showdef.scala
index 0dbaba979d..c3ace590ed 100644
--- a/test/files/run/global-showdef.scala
+++ b/test/files/run/global-showdef.scala
@@ -54,7 +54,7 @@ object Bippy {
val run = new compiler.Run()
run.compileSources(List(src))
}
- (output split "\\n").toList
+ output.linesIterator.toList
}
def showClass(name: String) = lines("-Yshow:typer", "-Xshow-class", name)
def showObject(name: String) = lines("-Yshow:typer", "-Xshow-object", name)