summaryrefslogtreecommitdiff
path: root/src/library/scala/reflect/generic/Universe.scala
blob: 4bc70044ae4adf924ad1e5b02a6ccf04dbf7d548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package scala.reflect
package generic

@deprecated("scala.reflect.generic will be removed", "2.9.1")
abstract class Universe extends Symbols
                           with Types
                           with Constants
                           with Scopes
                           with Names
                           with StdNames
                           with Trees
                           with AnnotationInfos
                           with StandardDefinitions {
  type Position
  val NoPosition: Position
}