<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff></diff>
      <filename>lib/scala-compiler.jar</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/scala-library-src.jar</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/scala-library.jar</filename>
    </modified>
    <modified>
      <diff>@@ -8,7 +8,7 @@ object Test {
     b.result
   }
   
-  collect[Int, Vector[Int]](List(1,2,3,4)) 
+  collect[Int, IndexedSeq[Int]](List(1,2,3,4)) 
   collect[Char, String](List('1','2','3','4'))
   collect[Char, Array[Char]](List('1','2','3','4'))  
 }
\ No newline at end of file</diff>
      <filename>test/files/pos/collectGenericCC.scala</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-import scala.collection.mutable.Vector;
+import scala.collection.mutable.IndexedSeq;
 import test.Outer;
 
 /* Test correct generation of java signatures. The Outer class should not</diff>
      <filename>test/files/pos/signatures/Test.java</filename>
    </modified>
    <modified>
      <diff>@@ -29,7 +29,7 @@ sealed abstract class List[@specialized +A] extends LinearSeq[A]
                                   with LinearSeqLike[A, List[A]] {
   override def companion: GenericCompanion[List] = List
 
-  import scala.collection.{Iterable, Traversable, Seq, Vector}
+  import scala.collection.{Iterable, Traversable, Seq, IndexedSeq}
 
   /** Returns true if the list does not contain any elements.
    *  @return &lt;code&gt;true&lt;/code&gt;, iff the list is empty.
@@ -494,7 +494,7 @@ final case class ::[@specialized B](private var hd: B, private[scala] var tl: Li
  */
 object List extends SeqFactory[List] {
   
-  import collection.{Iterable, Seq, Vector}
+  import collection.{Iterable, Seq, IndexedSeq}
 
   implicit def builderFactory[A]: CanBuildFrom[Coll, A, List[A]] = 
     new GenericCanBuildFrom[A] {</diff>
      <filename>test/files/pos/spec-List.scala</filename>
    </modified>
    <modified>
      <diff>@@ -215,7 +215,7 @@ object Test extends Application {
   sequenceTest(LinearSeq())
 //  sequenceTest(mutable.LinearSeq())
   sequenceTest(immutable.LinearSeq())
-  sequenceTest(mutable.Vector())
+  sequenceTest(mutable.IndexedSeq())
   rangeTest(1 to 10)
 
   setTest(Set())</diff>
      <filename>test/files/run/colltest1.scala</filename>
    </modified>
    <modified>
      <diff>@@ -24,7 +24,7 @@ object Test {
     mutable.Seq(_: _*),
     // immutable.Stack(_: _*),
     // mutable.Stack(_: _*),    
-    immutable.Vector(_: _*),
+    immutable.IndexedSeq(_: _*), // was Vector
     //mutable.Vector(_: _*),
     immutable.List(_: _*),
     immutable.Stream(_: _*)</diff>
      <filename>test/files/run/sequenceComparisons.scala</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-VectorView(1, 2, 3)
-VectorView(1, 2, 3)
-VectorViewZ((1,1), (2,2), (3,3))
+IndexedSeqView(1, 2, 3)
+IndexedSeqView(1, 2, 3)
+IndexedSeqViewZ((1,1), (2,2), (3,3))</diff>
      <filename>test/files/run/t2074_2.check</filename>
    </modified>
    <modified>
      <diff>@@ -1,13 +1,14 @@
-import scala.collection.immutable.Vector
-import scala.collection.VectorView
+// replaced all occurrences of 'Vector' with 'IndexedSeq'
+import scala.collection.immutable.IndexedSeq
+import scala.collection.IndexedSeqView
 
 object Test {
-  val v = new VectorView[Int, Vector[Int]] {
-    def underlying = Vector(1,2,3)
+  val v = new IndexedSeqView[Int, IndexedSeq[Int]] {
+    def underlying = IndexedSeq(1,2,3)
     def apply(idx: Int) = underlying(idx)
     def length = underlying.length
   }
-  val w = Vector(1, 2, 3).view
+  val w = IndexedSeq(1, 2, 3).view
   
   def main(args: Array[String]): Unit = {
     println(v)</diff>
      <filename>test/files/run/t2074_2.scala</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e723e07dc704d46be1f337d65bd02be6b3bc6e22</id>
    </parent>
  </parents>
  <author>
    <name>rompf</name>
    <email>rompf@5e8d7ff9-d8ef-0310-90f0-a4852d11357a</email>
  </author>
  <url>http://github.com/jorgeortiz85/scala/commit/e3b8433465bd80cd18e143deb99654fdab489a5b</url>
  <id>e3b8433465bd80cd18e143deb99654fdab489a5b</id>
  <committed-date>2009-10-21T14:17:09-07:00</committed-date>
  <authored-date>2009-10-21T14:17:09-07:00</authored-date>
  <message>built new starr and fixed test cases

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@19211 5e8d7ff9-d8ef-0310-90f0-a4852d11357a</message>
  <tree>3e5b8efdf6909a70c53f4bd4c1ae197294086264</tree>
  <committer>
    <name>rompf</name>
    <email>rompf@5e8d7ff9-d8ef-0310-90f0-a4852d11357a</email>
  </committer>
</commit>
