summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/internal/Required.scala
blob: 1bf1a2e97e3196071bdc184b8250289986f2cb95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package scala.reflect
package internal

import settings.MutableSettings

trait Required { self: SymbolTable =>

  type AbstractFileType >: Null <: {
    def path: String
    def canonicalPath: String
  }

  def picklerPhase: Phase

  val gen: TreeGen { val global: Required.this.type }

  def settings: MutableSettings

  def forInteractive: Boolean

  def forScaladoc: Boolean
}