summaryrefslogtreecommitdiff
path: root/tools/codegen
Commit message (Collapse)AuthorAgeFilesLines
* Optimization of Predef implicits.Paul Phillips2012-04-301-1/+1
| | | | | | | All those wildcards in a default-scoped implicit are expensive, they each lead to a typevar on every search. Restructured the Tuple2/Tuple3 Zipped classes, they're better this way anyway. This also gets all that Tuple[23] code out of genprod.
* Addresses the issues swirling around Double.Eps...Paul Phillips2011-03-151-1/+2
| | | | | | | | | | | Addresses the issues swirling around Double.Epsilon and friends which were battled out in more than one venue and then aptly summarized by retronym in #3791. Thanks to Simon Ochsenreither for submitting a patch; I wasn't able to use too much of it because the source code for these types is generated, but effort is always appreciated. Closes #3791, and I'm tired and I'd hate to blow this one at this late date: review by rytz.
* Tackled source generation from a new angle rath...Paul Phillips2011-01-231-0/+7
Tackled source generation from a new angle rather than letting genprod get any more creaky. This code generates the AnyVal source files (but those are not included here.) No review.