summaryrefslogtreecommitdiff
path: root/test/files/jvm/manifests-new.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-6811 Misc. removals in util, testing, io, ...Simon Ochsenreither2013-01-171-1/+33
|
* removes Symbol.kind and Type.kindEugene Burmako2012-08-261-1/+1
| | | | | | | | | | | | | use Universe.showRaw instead: scala> import scala.reflect.runtime.{universe => ru} import scala.reflect.runtime.{universe=>ru} scala> ru.showRaw(typeOf[Int]) res0: String = TypeRef(ThisType(scala), scala.Int, List()) scala> ru.showRaw(typeOf[Int].typeSymbol, printKinds = true) res1: String = scala.Int#CLS
* TypeTag => AbsTypeTag, ConcreteTypeTag => TypeTagEugene Burmako2012-06-081-3/+3
| | | | | 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-5/+7
|
* migrates stdlib and compiler to tagsEugene Burmako2012-04-231-0/+109
* all usages of ClassManifest and Manifest are replaced with tags * all manifest tests are replaced with tag tests