summaryrefslogtreecommitdiff
path: root/test/files/run/typetags_core.scala
Commit message (Collapse)AuthorAgeFilesLines
* tags for AnyVal and AnyRefEugene Burmako2012-07-041-0/+4
|
* removes ClassTag.String and TypeTag.StringEugene Burmako2012-07-021-0/+30
| | | | | | | | | | TypeTag.String is removed because it's unclear whether it should point to scala.Predef.String or to java.lang.String. ClassTag.String is removed to be consistent with TypeTag.String. This requires re-bootstrapping, because Definitions.scala in locker expects classTag[String] being automatically generated, whereas starr disagrees with locker on how to generate that class tag.
* TypeTag => AbsTypeTag, ConcreteTypeTag => TypeTagEugene Burmako2012-06-081-32/+0
| | | | | This protects everyone from the confusion caused by stuff like this: https://issues.scala-lang.org/browse/SI-5884
* repairs the tests after the refactoring spreeEugene Burmako2012-06-081-4/+2
|
* rethinks tagsEugene Burmako2012-04-231-0/+2
| | | | | * introduces ArrayTag and ErasureTag * all type tags now feature erasure
* Next generation of macrosEugene Burmako2012-04-121-0/+32
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