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

japgolly.scalajs.react.util.NotAllowed.scala Maven / Gradle / Ivy

The newest version!
package japgolly.scalajs.react.util

/** It is impossible for you, nor are you supposed to, create an instance for this.
  * This is uninhabitable.
  *
  * This is a marker to indicate that you're not allowed to call a method, whilst leaving the method
  * in place for you with a deprecation telling you why its uncallable.
  */
sealed trait NotAllowed extends Any { // Any so that null can't be used
  def result: Nothing
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy