summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/ReflectionExtractors.scala
Commit message (Collapse)AuthorAgeFilesLines
* run ScalaCheck tests directly, not through partestSeth Tisue2017-01-271-52/+0
| | | | | | | | | | | ScalaCheck ever being under partest in the first place is ancient history, from back in the Ant build days (shudder) ScalaCheck support was removed from partest 1.1.0, which we already upgraded to in a recent commit also upgrades ScalaCheck from 1.11.6 to 1.13.4, since we might as well. no source changes were necessary.
* Adds extractors for TypeName, TermName and ModifiersDen Shabalin2012-12-251-0/+52
This change allows to pattern match over type names, term names and modifiers. Otherwise it can be quite painful to match over complex trees as each name or modifiers requires a guard. This pull request also changes the name of default constructor for term and type names i.e. TypeName(s) instead of newTermName(s). This is shorter to type, more consistent with the rest of reflection api and consistent with the way it will be pattern matched later on.