summaryrefslogtreecommitdiff
path: root/test/files/run/classtags_core.check
Commit message (Collapse)AuthorAgeFilesLines
* Normalized line endings.Paul Phillips2012-09-201-30/+30
| | | | | | This brings all the files into line with the .gitattributes settings, which should henceforth be automatically maintained by git.
* fixes Manifest.Nothing and Manifest.NullEugene Burmako2012-09-061-15/+15
| | | | | | | | | | Also introduces an important change to Manifest.Nothing and Manifest.Null. Previously their `erasure` was equal to classOf[Object]. Now it's correctly set to classOf[scala.runtime.Nothing$] and classOf[scala.runtime.Null$] correspondingly. See a discussion here: https://groups.google.com/forum/#!topic/scala-internals/Y0ALGo7QPqE
* reverts changes to ClassTag.NothingEugene Burmako2012-08-221-30/+30
| | | | | | | | It seemed to be a good idea to have ClassTag.Nothing crash in agreement with its incalculable nature. However this breaks CanBuildFrom for the situations when Nothing is inferred or provided explicitly. Hence the rollback.
* ClassTag.Nothing now throws an exceptionEugene Burmako2012-07-301-30/+30
| | | | | Nothing is a bottom type, so it doesn't make much sense for it to have a meaningful erasure (ClassTag.Nothing.runtimeClass).
* tags for AnyVal and AnyRefEugene Burmako2012-07-041-0/+4
|
* removes ClassTag.String and TypeTag.StringEugene Burmako2012-07-021-2/+0
| | | | | | | | | | 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.
* repairs the tests after the refactoring spreeEugene Burmako2012-06-081-32/+28
|
* rethinks tagsEugene Burmako2012-04-231-30/+32
| | | | | * introduces ArrayTag and ErasureTag * all type tags now feature erasure
* Next generation of macrosEugene Burmako2012-04-121-0/+30
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