/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2003-2009, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id: Location.scala 18230 2009-07-07 10:18:05Z michelou $ package scala.collection.script /** Class <code>Location</code> describes locations in messages implemented by * class <a href="Message.html" target="contentFrame"><code>Message</code></a>. * * @author Matthias Zenger * @version 1.0, 10/05/2004 */ sealed abstract class Location case object Start extends Location case object End extends Location case object NoLo extends Location case class Index(n: Int) extends Location