summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-11-19 15:03:47 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-11-19 15:03:47 +0000
commit4886b55fa41e6c98434c90fe33a5909c5c935b5b (patch)
treed2b89798b09ff6141719ab2551660867042d436a
parent72969dec9de6b569f932577283b2029c682cf1d1 (diff)
downloadscala-4886b55fa41e6c98434c90fe33a5909c5c935b5b.tar.gz
scala-4886b55fa41e6c98434c90fe33a5909c5c935b5b.tar.bz2
scala-4886b55fa41e6c98434c90fe33a5909c5c935b5b.zip
Fixes #3647, closes #3647, adds a test case for...
Fixes #3647, closes #3647, adds a test case for it, and a missing test case for #3935. No review.
-rw-r--r--src/library/scala/collection/immutable/PagedSeq.scala7
-rw-r--r--test/files/run/t3647.scala23
-rw-r--r--test/files/run/t3935.scala15
3 files changed, 41 insertions, 4 deletions
diff --git a/src/library/scala/collection/immutable/PagedSeq.scala b/src/library/scala/collection/immutable/PagedSeq.scala
index 9cb1040f95..270524eaa7 100644
--- a/src/library/scala/collection/immutable/PagedSeq.scala
+++ b/src/library/scala/collection/immutable/PagedSeq.scala
@@ -65,11 +65,10 @@ object PagedSeq {
def fromLines(source: Iterator[String]): PagedSeq[Char] = {
var isFirst = true
fromStrings(source map { line =>
- if (isFirst) line
- else {
+ if (isFirst) {
isFirst = false
- "\n"+line
- }
+ line
+ } else "\n"+line
})
}
diff --git a/test/files/run/t3647.scala b/test/files/run/t3647.scala
new file mode 100644
index 0000000000..a970e887f6
--- /dev/null
+++ b/test/files/run/t3647.scala
@@ -0,0 +1,23 @@
+
+
+
+import collection.immutable._
+
+
+object Test {
+ def main(args: Array[String]) {
+ val ps = PagedSeq.fromLines(List(
+ "line1",
+ "line2",
+ "line3",
+ "line4"
+ ).iterator)
+ assert(ps.filter(_ == '\n').size == 3)
+
+ val ps1 = PagedSeq.fromLines(List("Ok").iterator)
+ assert(ps1.filter(_ == '\n').size == 0)
+
+ val eps = PagedSeq.fromLines(List().iterator)
+ assert(eps.filter(_ == '\n').size == 0)
+ }
+}
diff --git a/test/files/run/t3935.scala b/test/files/run/t3935.scala
new file mode 100644
index 0000000000..c66b1b0599
--- /dev/null
+++ b/test/files/run/t3935.scala
@@ -0,0 +1,15 @@
+
+
+
+
+object Test {
+ def main(args: Array[String]) {
+ val q = scala.collection.mutable.Queue[String]()
+ assert(q.length == 0)
+ try {
+ assert(q.front != null)
+ } catch {
+ case _ =>
+ }
+ }
+}