summaryrefslogtreecommitdiff
path: root/test/files/codelib
Commit message (Collapse)AuthorAgeFilesLines
* Fixes https://issues.scala-lang.org/browse/SI-5453Eugene Burmako2012-02-131-1/+1
| | | | | | | | | | | Originally we thought that macros declared inside objects should not provide _this to their bodies. However, it: 1) contradicts vanilla Scala rules, according to which both class and object methods can use this, 2) imposes unnecessary burden on macro developers without providing any conveniences to us. Review by @odersky.
* Replaced LiftCode with a function in MacroContextEugene Burmako2012-02-051-0/+1
Major cleanup of reification: * LiftCode phase has been removed * Code has been deprecated and will be removed as we roll a new starr * Logic related to type-directed lifting has been purged scala.reflect.macro.Context#reify now provides the same services as LiftCode provided (except that it returns Tree, not Code). For testing purposes, I've retained the oh-so-convenient automagic lift. test/files/codelib/code.jar now hosts Code.lift reimplemented in a macro, so that the tests can continue working as if nothing has happened.