summaryrefslogtreecommitdiff
path: root/test/files/run/toolbox_silent_reporter.scala
Commit message (Collapse)AuthorAgeFilesLines
* removes front ends from scala-reflect.jarEugene Burmako2012-09-271-2/+2
| | | | | | | | | | | It was an interesting idea to give macro developers control over front ends, but it hasn't given any visible results. To the contrast, front ends have proven useful for toolboxes to easily control what errors get printed where. Therefore I'm moving front ends to scala-compiler.jar to clean up the API. Yay for scaladoc-driven development!
* 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
* repairs the tests after the refactoring spreeEugene Burmako2012-06-081-2/+5
|
* removes Expr <-> Tree implicitsEugene Burmako2012-04-251-1/+1
|
* scala.reflect.api: Reporters => FrontEndsEugene Burmako2012-04-201-1/+1
|
* Next generation of macrosEugene Burmako2012-04-121-0/+16
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