summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Reinstated setContent.Miles Sabin2009-07-131-2/+9
|
* Performance oriented rewrite of BatchSourceFile.Paul Phillips2009-07-131-90/+56
| | | | | | shaves for me 2-2.5 minutes off the time to run "ant test.suite" from locker.
* Trying to make typechecker faster by (1) new su...Martin Odersky2009-07-1317-154/+455
| | | | | | | Trying to make typechecker faster by (1) new subtyping (2) better implicit caches. Disallowed '42 as a symbol. Added cache method to Mutable Maps. Better complietion in interactive.
* Fixed specialized method parameters.Iulian Dragos2009-07-123-5/+16
|
* Fix and test case for #1843.Paul Phillips2009-07-122-3/+40
|
* Added ThreadPoolScheduler supporting managedBlock.Philipp Haller2009-07-117-15/+107
|
* Making most of the symbols in Definitions into ...Paul Phillips2009-07-111-346/+267
| | | | | | Making most of the symbols in Definitions into stable identifiers. Removed some duplication and did some organization.
* Fix and test case for #1260.Paul Phillips2009-07-112-6/+9
|
* More refinement on MixLiterals.Paul Phillips2009-07-101-38/+35
|
* More of the same in the pattern matcher.Paul Phillips2009-07-102-119/+141
| | | | | | | targets the mixing rule which generates switch statements. We should soon be generating switches for quite a few more cases than we are at present.
* Implementation and test cases for canEqual meth...Paul Phillips2009-07-097-8/+58
| | | | | | | Implementation and test cases for canEqual method in case classes. Now the autogenerated equality method inquires with the argument as to whether other.canEqual(this) before returning true.
* The presently salvageable portion of my attempt...Paul Phillips2009-07-093-108/+160
| | | | | | | The presently salvageable portion of my attempt to fix bugs #425 and #816 (which I have indeed fixed, but a bazillion other test cases broke so the fix is commented out until I can make everyone happy at once.)
* I can no longer endure having one of the fundam...Paul Phillips2009-07-091-60/+60
| | | | | | | I can no longer endure having one of the fundamental pattern matcher variables (which incidentally holds multiple values) being named "temp". temp -> tvars, row -> rows.
* Made NamespaceBinding a case class; addresses t...Paul Phillips2009-07-081-6/+6
| | | | | Made NamespaceBinding a case class; addresses ticket #2138.
* Temporarily reverting r18237 on iulian's behalf.Paul Phillips2009-07-081-2/+0
|
* More on the pattern matcher: continuing to give...Paul Phillips2009-07-083-109/+121
| | | | | | More on the pattern matcher: continuing to give things names I can understand and commenting what exactly things do.
* TextField installs it's listener lazily nowIngo Maier2009-07-088-92/+106
|
* Annotations on type parameters are added to the...Iulian Dragos2009-07-081-0/+2
| | | | | | Annotations on type parameters are added to the initial symbols, not only skolems. This fixes specialized methods
* Lots of work hardening matching on sequences.Paul Phillips2009-07-077-142/+213
| | | | | | | | | | | | | | | | one long-standing bug which actually had a test case testing its bugginess (which is to say, when I fixed the bug, the test case failed.) This: - def doMatch4(xs:Seq[Char]) = xs match { - case Seq(x, y, _*) => x::y::Nil - case Seq(x, y, z, w) => List(z,w) // redundant! - } ...should never have compiled - which must have been recognized on some level given the "redundant!" comment, but it never made it into neg/.
* minor change (Scala comments)michelou2009-07-076-65/+106
|
* minor change (Scala comments)michelou2009-07-072-28/+40
|
* fixed Scala comments, added svn:keywordsmichelou2009-07-07115-300/+1365
|
* And more pattern matcher refinement.Paul Phillips2009-07-065-122/+100
|
* Fixed casting bug in slider labelsIngo Maier2009-07-061-5/+8
|
* More naming and commenting, some moving to more...Paul Phillips2009-07-063-127/+130
| | | | | | More naming and commenting, some moving to more sensible locations, and removing unnecessary mutability.
* Implemented proposed strategy for #1503 and mov...Paul Phillips2009-07-054-4/+11
| | | | | | Implemented proposed strategy for #1503 and moved test case out of pending (and fixed it so it didn't throw a match error.)
* Made #576 output an error rather than crashing.Paul Phillips2009-07-051-2/+13
|
* Fixed positionsMartin Odersky2009-07-0512-332/+406
|
* Interim fix and test case for #1434.Paul Phillips2009-07-052-3/+24
|
* Fixes and test cases for #2124 and #2125.Paul Phillips2009-07-0514-127/+96
|
* Removed a pile of gratuitous implicit parameter...Paul Phillips2009-07-056-897/+936
| | | | | | | Removed a pile of gratuitous implicit parameters from the pattern matcher. Moved many things to more believable locations. Transitioned everything in CodeFactory and deleted it.
* fix #2122, test for #2116Lukas Rytz2009-07-054-5/+17
|
* In an amazing pattern matcher breakthrough, I t...Paul Phillips2009-07-042-103/+140
| | | | | | In an amazing pattern matcher breakthrough, I think I actually understand the algorithm. More giving names to things.
* Wrote a subclass of tree printer which outputs ...Paul Phillips2009-07-033-84/+163
| | | | | Wrote a subclass of tree printer which outputs more to my liking.
* Beginnings of a tracing facility for the patter...Paul Phillips2009-07-035-89/+136
| | | | | | Beginnings of a tracing facility for the pattern matcher so I can see what's going wrong inside the optimization matrix of mystery.
* Added the co- part of codec.Paul Phillips2009-07-031-1/+2
|
* Added test for #1948.Philipp Haller2009-07-022-0/+12
|
* Switched to ForkJoinScheduler as default.Philipp Haller2009-07-027-15/+17
|
* Fixed build.Philipp Haller2009-07-021-1/+1
|
* Removed obsolete Scheduler restart.Philipp Haller2009-07-022-6/+2
|
* refined range positions some more; eliminated A...Martin Odersky2009-07-0224-197/+251
| | | | | refined range positions some more; eliminated Array.withDims
* Searched the TreeBuilder bathwater for the miss...Paul Phillips2009-07-021-31/+30
| | | | | | Searched the TreeBuilder bathwater for the missing baby and treated him for lazy val exposure. The kid is going to be OK.
* Instilling a little consistency in the pattern ...Paul Phillips2009-07-026-142/+112
| | | | | Instilling a little consistency in the pattern matcher.
* fix for #2116Lukas Rytz2009-07-022-2/+2
|
* Reverted treebuilder all the way to r18056.Paul Phillips2009-07-011-26/+30
|
* Working on pattern matcher debuggability.Paul Phillips2009-07-012-54/+54
|
* Creating case classes in preference to passing ...Paul Phillips2009-07-016-117/+194
| | | | | | | | Creating case classes in preference to passing around a variety of inscrutable tuples. And, fix and test case for #1697. There remain serious extractor issues which I hope to have fully diagnosed in the near future.
* added "diagnostic" to context.Lukas Rytz2009-07-013-3/+15
|
* Fix for #2092Antonio Cunei2009-07-014-8/+24
|
* More pattern matcher streamlining.Paul Phillips2009-07-012-56/+50
|