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

dotty.tools.dotc.util.Property.scala Maven / Gradle / Ivy

There is a newer version: 3.6.4-RC1-bin-20241220-0bfa1af-NIGHTLY
Show newest version
package dotty.tools.dotc.util

/** Defines a key type with which to tag properties, such as attachments
 *  or context properties
 */
object Property {

  /** The class of keys for properties of type V */
  class Key[+V]

  /**
   * The class of keys for sticky properties of type V
   *
   * Sticky properties are properties that should be copied over when their container
   * is copied.
   */
  class StickyKey[+V] extends Key[V]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy