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

ammonite.compiler.CompilerUtil.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0-M0-67-83057fea
Show newest version
package ammonite.compiler

object CompilerUtil {

  val ignoredSyms = Set(
    "package class-use",
    "object package-info",
    "class package-info"
  )
  val ignoredNames = Set(
    // Probably synthetic
    "",
    "",
    "$main",
    // Don't care about this
    "toString",
    // Behaves weird in 2.10.x, better to just ignore.
    "_"
  )

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy