summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala
blob: 64c5b41638b2a6d0227033b726792518428f92c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package scala.tools.nsc
package typechecker

trait StdAttachments {
  self: Analyzer =>

  type UnaffiliatedMacroContext = scala.reflect.macros.runtime.Context
  type MacroContext = UnaffiliatedMacroContext { val universe: self.global.type }
  case class MacroRuntimeAttachment(delayed: Boolean, typerContext: Context, macroContext: Option[MacroContext])
}