summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reflective-mamd-normal-mi
Commit message (Collapse)AuthorAgeFilesLines
* SI-6696 removes "helper" tree factory methodsEugene Burmako2012-12-061-3/+3
| | | | | | | | | As experience shows, these methods can easily be a source of confusion for the newcomers: https://issues.scala-lang.org/browse/SI-6696. I'm only leaving the TypeTree(tp) factory, since the facility to set underlying types for type trees is not exposed in the public API, as it's inherently mutable.
* removes EmptyTermName and EmptyTypeNameEugene Burmako2012-10-031-1/+1
| | | | We have nme.EMPTY and tpnme.EMPTY for that.
* SI-6342 cleans up toolbox APIEugene Burmako2012-09-151-1/+1
| | | | | | 1) parseExpr => parse 2) runExpr => eval 3) Introduces compile(Tree): () => Any, since it has frequent uses
* evicts last traces of makro from our codebaseEugene Burmako2012-08-021-1/+1
| | | | Removes the stubs left out to appease the old starr, fixes macro tests.
* renames asType to toType and asXXXSymbol to asXXXEugene Burmako2012-08-021-1/+1
| | | | | | | This renaming arguably makes the intent of `asType` more clear, but more importantly it shaves 6 symbols off pervasive casts that are required to anything meaningful with reflection API (as in mirror.reflectMethod(tpe.member(newTermName("x")).asMethodSymbol)).
* repairs the tests after the refactoring spreeEugene Burmako2012-06-082-6/+9
|
* restores some disabled macro tests, makes checkFeature synchronous when used ↵Eugene Burmako2012-04-142-0/+26
| | | | for macros
* disabled failing macro test; needs to be adapted to new scheme.Martin Odersky2012-04-132-25/+0
|
* Next generation of macrosEugene Burmako2012-04-122-0/+25
Implements SIP 16: Self-cleaning macros: http://bit.ly/wjjXTZ Features: * Macro defs * Reification * Type tags * Manifests aliased to type tags * Extended reflection API * Several hundred tests * 1111 changed files Not yet implemented: * Reification of refined types * Expr.value splicing * Named and default macro expansions * Intricacies of interaction between macros and implicits * Emission of debug information for macros (compliant with JSR-45) Dedicated to Yuri Alekseyevich Gagarin