summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/api/Universe.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/reflect/api/Universe.scala')
-rwxr-xr-xsrc/compiler/scala/reflect/api/Universe.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/compiler/scala/reflect/api/Universe.scala b/src/compiler/scala/reflect/api/Universe.scala
new file mode 100755
index 0000000000..e0476c4e6d
--- /dev/null
+++ b/src/compiler/scala/reflect/api/Universe.scala
@@ -0,0 +1,16 @@
+package scala.reflect
+package api
+
+abstract class Universe extends Symbols
+ with Types
+ with Constants
+ with Scopes
+ with Names
+ with Trees
+ with Positions
+ with AnnotationInfos
+ with StandardDefinitions {
+ type Position
+ val NoPosition: Position
+}
+