All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.reflect.makro.runtime.Settings.scala Maven / Gradle / Ivy

package scala.reflect.makro
package runtime

trait Settings {
  self: Context =>

  def settings: List[String] = {
    val optionName = universe.settings.XmacroSettings.name
    val settings = compilerSettings.find(opt => opt.startsWith(optionName)).map(opt => opt.substring(optionName.length + 1)).getOrElse("")
    settings.split(",").toList
  }

  def compilerSettings: List[String] = universe.settings.recreateArgs

  def setCompilerSettings(options: String): this.type =
    // todo. is not going to work with quoted arguments with embedded whitespaces
    setCompilerSettings(options.split(" ").toList)

  def setCompilerSettings(options: List[String]): this.type = {
    val settings = new tools.nsc.Settings(_ => ())
    // [Eugene] what settings should we exclude?
    settings.copyInto(universe.settings)
    this
  }

  def withCompilerSettings[T](options: String)(op: => T): T =
    // todo. is not going to work with quoted arguments with embedded whitespaces
    withCompilerSettings(options.split(" ").toList)(op)

  def withCompilerSettings[T](options: List[String])(op: => T): T = {
    val old = options
    setCompilerSettings(options)
    try op
    finally setCompilerSettings(old)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy