ammonite.compiler.CompilerUtil.scala Maven / Gradle / Ivy
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