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

scalafix.v0.Message.scala Maven / Gradle / Ivy

package scalafix.v0

import scala.meta.inputs._
import scala.meta.internal.inputs._

final case class Message(position: Position, severity: Severity, text: String) {
  def syntax = s"[${position.start}..${position.end}): ${severity.syntax} $text"
  def structure =
    s"""Message(${position.structure}, ${severity.structure}, "$text")"""
  override def toString = syntax
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy