aboutsummaryrefslogtreecommitdiff
path: root/test/dotc
Commit message (Collapse)AuthorAgeFilesLines
* Add ArrayBuilder to whitelistMartin Odersky2015-11-171-1/+3
|
* Add file to scala-collections-whitelistMartin Odersky2015-11-171-1/+1
| | | | | This witnesses that #945 is fixed (by pushing a fix to the Scala file to dotty-library).
* Enable more parts of whitelistMartin Odersky2015-11-161-4/+4
|
* Flag trailing `_' following non-function as an errorMartin Odersky2015-11-161-0/+1
| | | | | | | | If `x` is not a function or method, then `x _` should be disallowed. scalac accepts this and converts it to () => x instead. I'd like to drop this because it's unnecessary and non-obvious. If -language:Scala2 is on, the behavior is like Scala 2's but a migration warning is issued.
* Remove leftover empty linesDmitry Petrashko2015-11-101-10/+0
|
* Change diagnosis of GenericTraversableTemplate.scala.Dmitry Petrashko2015-11-101-0/+1
|
* This cyclic ref is fixed.Dmitry Petrashko2015-11-101-6/+2
|
* Tailrec bug is fixed.Dmitry Petrashko2015-11-101-42/+14
|
* Revert "Check that Iterator.scala compiles on jenkins."Dmitry Petrashko2015-11-102-5/+4
| | | | This reverts commit 05e47a4ac03cad65932a5bbddf506b91e6604f38.
* Add more generic classes that compileDmitry Petrashko2015-11-101-0/+12
|
* More deep subtype failures.Dmitry Petrashko2015-11-101-0/+14
|
* Add more generic classes that compileDmitry Petrashko2015-11-101-0/+7
|
* Showcase #943Dmitry Petrashko2015-11-101-0/+5
|
* HasNewBuilder and HasNewCombiner compileDmitry Petrashko2015-11-101-0/+4
|
* GenericSeqCompanion compilesDmitry Petrashko2015-11-101-0/+2
|
* Another cyclic refDmitry Petrashko2015-11-101-0/+3
|
* One more cyclic refDmitry Petrashko2015-11-101-0/+4
|
* Start adding scala.collections.generic.*Dmitry Petrashko2015-11-101-0/+20
|
* TrieIterator uses early definitions.Dmitry Petrashko2015-11-101-0/+1
|
* Add TreeMap and TreeSet.Dmitry Petrashko2015-11-101-0/+3
|
* showcase #941Dmitry Petrashko2015-11-101-0/+4
|
* Showcase #942Dmitry Petrashko2015-11-101-0/+4
|
* Add more collections that compileDmitry Petrashko2015-11-101-0/+14
|
* Showcase #940Dmitry Petrashko2015-11-101-0/+2
|
* Add Map and MapLikeDmitry Petrashko2015-11-101-0/+3
|
* Showcase #939Dmitry Petrashko2015-11-101-0/+3
|
* Try to add ListMap and ListSetDmitry Petrashko2015-11-101-0/+7
|
* Showcase #939Dmitry Petrashko2015-11-101-0/+3
|
* Start adding more immutable collections.Dmitry Petrashko2015-11-101-0/+8
|
* Add more classes that compileDmitry Petrashko2015-11-101-0/+21
|
* One more cyclic reference.Dmitry Petrashko2015-11-101-0/+3
|
* One more manifestation of #916Dmitry Petrashko2015-11-101-0/+5
|
* Showcase #938Dmitry Petrashko2015-11-101-0/+2
|
* One more cyclic reference.Dmitry Petrashko2015-11-101-0/+7
|
* Add more collections that compileDmitry Petrashko2015-11-101-2/+25
|
* Showcase #937Dmitry Petrashko2015-11-101-3/+13
|
* Disable compilation of GenSeq and GenSeqLike.Dmitry Petrashko2015-11-101-0/+4
|
* Showcase #935Dmitry Petrashko2015-11-101-1/+0
|
* Add more collections to whitelist.Dmitry Petrashko2015-11-101-0/+9
|
* Check that Iterator.scala compiles on jenkins.Dmitry Petrashko2015-11-102-4/+5
|
* Avoid cyclic reference errors when unpickling classesMartin Odersky2015-11-091-1/+6
| | | | | | | Set info early in order to avoid cyclic reference errors. Errors were observed when compiling scala/Predef.scala scala/package.scala scala/collection/GenSeqLike.scala
* Generalize MultiArrayOf to arrays of wildcardsMartin Odersky2015-11-091-31/+15
| | | | | Needed for both ClassTags and instance of checks. This makes scala/Array.scala compile.
* Avoid taking references before toplevel symbols are entered.Martin Odersky2015-11-091-25/+23
| | | | | | | | Taking a reference means that the symbol will be brought forward into the current run, then if the same symbol is entered from source, a datarace ensues. This affected the ProductN symbols because these are automatically added to a case class suring desugaring.
* Enable compilation of primitive types.Martin Odersky2015-11-091-12/+10
|
* Merge pull request #927 from dotty-staging/stdlib-boundsodersky2015-11-092-2/+2
|\ | | | | Drop checking that lower bound is a subtype of upper bound.
| * Check bounds of inferred typevars in PostTyper.Martin Odersky2015-11-051-0/+1
| |
| * Drop neg testMartin Odersky2015-11-051-1/+0
| |
| * Drop test that lower bound must be a subtype of upper bound.Martin Odersky2015-11-051-2/+1
| | | | | | | | | | | | As discussed in #780 and #525, the test is not needed. This makes t1279a compile, which got moved now to pos. Fixes #780 and #915. It also makes scala.List compile. Review by @smarter.
* | Drop neg testMartin Odersky2015-11-051-1/+0
| |
* | Turn on -language:Scala2 -migration when compiling stdlibMartin Odersky2015-11-051-1/+1
| | | | | | | | needed to turn some errors into warnings.