summaryrefslogtreecommitdiff
path: root/test/files/run/t6288.check
Commit message (Collapse)AuthorAgeFilesLines
* don't store subpats bound to underscoreAdriaan Moors2013-01-311-8/+2
| | | | | | | also, tweak fix in place for SI-5158 to appease SI-6941 don't store mutable fields from scala.* as we can assume these classes are well-behaved and do not mutate their case class fields
* Expand pattern match position tests.Jason Zaugg2012-12-121-3/+58
| | | | | | - Adds tests for unapplySeq and unapply: Boolean. Both seem to be well positioned after the previous changes.
* SI-6288 Remedy ill-positioned extractor binding.Jason Zaugg2012-12-121-1/+1
| | | | | | The call to `Option#get` on the result of the unapply method was unpositioned and ended up with the position of the `match`.
* SI-6288 Position argument of unapplyJason Zaugg2012-12-111-0/+30
`atPos(pos) { ... }` doesn't descend into children of already positioned trees, we need to manually set the position of `CODE.REF(binder)` to that of the stunt double `Ident(nme.SELECTOR_DUMMY)`.