aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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.
| * Revert "Go back to sbt 0.13.5 until 0.13.9 is published on type safe ↵Dmitry Petrashko2015-11-101-1/+1
| | | | | | | | | | | | artifactory" This reverts commit 2f41c73ee86a56b190758baaf5999ed85d2f57a1.
| * 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
| |
* | Merge pull request #946 from dotty-staging/more-predictable-hashesDmitry Petrashko2015-11-112-2/+2
|\ \ | | | | | | Make hash codes on type more predictable.
| * | Make hash codes on type more predictable.Dmitry Petrashko2015-11-102-2/+2
| |/ | | | | | | May help finding the partest issue.
* | Merge pull request #921 from dotty-staging/polytypes-hashcodesDmitry Petrashko2015-11-102-9/+30
|\ \ | |/ |/| Add stable hash codes to PolyTypes and PolyParams.
| * Address review comments.Dmitry Petrashko2015-11-102-1/+6
| |
| * Add stable hash codes to PolyParams.Dmitry Petrashko2015-11-041-4/+20
| | | | | | | | Helps me a lot in linker.
| * Hashable: make finishHash protected.Dmitry Petrashko2015-11-041-5/+5
| | | | | | | | Is in sync with hashSeed being protected.
* | Merge pull request #928 from dotty-staging/stdlib-definitionsDmitry Petrashko2015-11-1058-562/+756
|\ \ | | | | | | Make Definitions survive recompilation of core definitions.
| * | Get more info on HeisenbugsMartin Odersky2015-11-092-1/+21
| | | | | | | | | | | | | | | | | | 1) Check that searched scope is consistent 2) Do a linear search for symbol with name, and report if something was found that way.
| * | Print missing ref diagnostics on stderrMartin Odersky2015-11-091-2/+2
| | | | | | | | | | | | Was stdout, but this gets mixed up with the exception printing on stderr.
| * | Avoid cyclic reference errors when unpickling classesMartin Odersky2015-11-093-7/+16
| | | | | | | | | | | | | | | | | | | | | 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
| * | Don't inspect info when dealiasing classesMartin Odersky2015-11-091-2/+3
| | | | | | | | | | | | | | | | | | | | | Forces a bit less, and could be more efficient. Did not seem to make a difference with current CyclicReferences though, except that cyclic error happened a bit later in the sequence.
| * | Better diagnosis from completions printerMartin Odersky2015-11-092-1/+13
| | | | | | | | | | | | Track starts and ends of completions using indentation.
| * | More info when TreeChecker failsMartin Odersky2015-11-091-1/+1
| | | | | | | | | | | | Now also provides compilation unit.