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

org.wartremover.InspectResult.scala Maven / Gradle / Ivy

The newest version!
package org.wartremover

case class InspectResult(
  errors: List[Diagnostic],
  warnings: List[Diagnostic],
  stderr: String,
)

object InspectResult {
  val empty: InspectResult = InspectResult(Nil, Nil, "")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy