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

unused_proto.Location.scala Maven / Gradle / Ivy

The newest version!
package unused_proto

case class Location(startLine: Int, startColumn: Int, endLine: Option[Int], endColumn: Int) {
  def getEndLine: Int = endLine.getOrElse(startLine)
}

object Location {
  val keys = ("start_line", "start_column", "end_line", "end_column")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy