summaryrefslogblamecommitdiff
path: root/src/library/scala/reflect/makro/Names.scala
blob: 8a823d19cb0994873c39bc45ca8bd8fc5660ec97 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                        
package scala.reflect.makro

trait Names {
  self: Context =>

  /** Creates a fresh string */
  def fresh(): String

  /** Creates a fresh string from the provided string */
  def fresh(name: String): String

  /** Creates a fresh name from the provided name */
  def fresh(name: Name): Name
}