summaryrefslogtreecommitdiff
path: root/test/files/neg/patmatexhaust.check
Commit message (Collapse)AuthorAgeFilesLines
* Finally figured out what was going on with a ce...Paul Phillips2011-05-061-1/+17
| | | | | | | Finally figured out what was going on with a certain class of exhaustiveness checking bugs. Hey moors, you can put away your pins, puppets, and magic sauces. Closes #3098, no review.
* Completely to my surprise, found that fixing al...Paul Phillips2011-04-301-12/+13
| | | | | | | | Completely to my surprise, found that fixing all those sequence issues revealed that the pattern matcher can catch a lot more inexhaustive cases than it has been catching. Fixed most of the inexhaustive matches in the compiler, which had become a bit warnier. No review.
* Unreverting r23174. No review.Paul Phillips2010-10-061-1/+1
|
* Reverts r23174, which I believe will bring the ...Paul Phillips2010-10-041-1/+1
| | | | | | Reverts r23174, which I believe will bring the build back to life. It only chokes under -optimise. No review.
* Work on the pattern matcher.Paul Phillips2010-10-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | patches for #3887 and #3888, but I determined that I could achieve the same effect by deleting a bunch of code, so I did. This left only a few lines in TransMatch, so I eliminated it, which led me to remember that many places still reference non-existent phase transmatch, so those were updated. Notes: * This swaps equality tests on stable identifier patterns. They have never conformed to the spec (as noted long ago in ticket #785) which says "The pattern matches any value v such that r == v" whereas until now the test being performed was v == r. * An issue was introduced with specialization in that the implementation of "isTupleType" in Definitions relied upon sym == TupleClass(elems.length). This test is untrue for specialized tuples, causing mysterious behavior because only some tuples are specialized. There is now "isTupleTypeOrSubtype" although it seems likely the former implementation is unnecessary. The issue is sidestepped if one uses "getProductArgs" to retrieve the element types because it sifts through the base types for the Product symbol. Closes #3887 and #3888, review by dmharrah.
* Tweaking the sealed logic in light of #3097.Paul Phillips2010-02-251-1/+1
| | | | | | | Reorganizes children a little so they always come back sorted the same way the pickler does. Taking advantage of -Yfatal-warnings in the test case. Review by community.
* Fix and test cases for ticket #443.Paul Phillips2009-10-171-2/+7
| | | | | | | flags on AnyVal from FINAL|SEALED to ABSTRACT|SEALED. This appears correct and without ill effect, but if anyone spots new anyval oddness you know where to look.
* Starting on improving the abstraction level of ...David MacIver2008-11-131-0/+1
| | | | | | | | Starting on improving the abstraction level of the pattern matcher (code from paul) Still needs a fair bit of work.
* fixed t335Burak Emir2008-01-041-1/+5
|
* optimizing irrefutable tuple matches and remove...Burak Emir2007-09-261-1/+1
| | | | | optimizing irrefutable tuple matches and removed -Ymatch-algo
* new pattern matching algoBurak Emir2007-03-221-14/+18
| | | | | | | removed "removeoption" changed SUnit and some tests added useful debug msg in typer
* more changes to make tuples (...)Martin Odersky2007-02-141-2/+2
|
* exhaustivity reworkedBurak Emir2007-02-051-4/+7
|
* matching: + exhaustivity check, warningsBurak Emir2007-02-021-0/+20
Iterator: gets mkString method Iterable: only whitespace Definitions: value classes no longer SEALED test cases for exhaustivity + unapply/array