
xsbt.api.Discovered.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zinc-apiinfo_2.11 Show documentation
Show all versions of zinc-apiinfo_2.11 Show documentation
Incremental compiler of Scala
/* sbt -- Simple Build Tool
* Copyright 2010 Mark Harrah
*/
package xsbt.api
final case class Discovered(baseClasses: Set[String], annotations: Set[String], hasMain: Boolean, isModule: Boolean) {
def isEmpty = baseClasses.isEmpty && annotations.isEmpty
}
object Discovered {
def empty = new Discovered(Set.empty, Set.empty, false, false)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy