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

scala.scalanative.build.Sanitizer.scala Maven / Gradle / Ivy

There is a newer version: 0.5.5
Show newest version
package scala.scalanative.build

/* Implementation of code santizier  */
sealed abstract class Sanitizer(val name: String)
object Sanitizer {
  case object AddressSanitizer extends Sanitizer("address")
  case object ThreadSanitizer extends Sanitizer("thread")
  case object UndefinedBehaviourSanitizer extends Sanitizer("undefined")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy