scala.reflect.macros.contexts.FrontEnds.scala Maven / Gradle / Ivy
package scala.reflect.macros
package contexts
import scala.reflect.macros.runtime.AbortMacroException
trait FrontEnds {
self: Context =>
def echo(pos: Position, msg: String): Unit = universe.reporter.echo(pos, msg)
def info(pos: Position, msg: String, force: Boolean): Unit = universe.reporter.info(pos, msg, force)
def hasWarnings: Boolean = universe.reporter.hasErrors
def hasErrors: Boolean = universe.reporter.hasErrors
def warning(pos: Position, msg: String): Unit = callsiteTyper.context.warning(pos, msg)
def error(pos: Position, msg: String): Unit = callsiteTyper.context.error(pos, msg)
def abort(pos: Position, msg: String): Nothing = throw new AbortMacroException(pos, msg)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy