summaryrefslogtreecommitdiff
path: root/src/compiler/scala/reflect/makro/runtime/Symbols.scala
blob: 63415234862ccf3143e19615fcda090ce4b9553a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package scala.reflect.makro
package runtime

trait Symbols {
  self: Context =>

  def isLocatable(sym: Symbol) = sym.isLocatable

  def isStatic(sym: Symbol) = sym.isStatic
}