Object/Trait

org.bitbucket.inkytonik.kiama.util

Messaging

Related Docs: trait Messaging | package util

Permalink

object Messaging

Shared definitions for all messaging.

Source
Messaging.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Messaging
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Messages = Vector[Message]

    Permalink

    The type of a sequence of messages.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def check[T](t: T)(f: ==>[T, Messages]): Messages

    Permalink

    If f is defined at t apply it and return the resulting sequence of messages.

    If f is defined at t apply it and return the resulting sequence of messages. Otherwise, return an empty sequence.

  6. def checkUse(e: Entity)(f: ==>[Entity, Messages]): Messages

    Permalink

    Check that the entity e is used legally and return appropriate messages if not.

    Check that the entity e is used legally and return appropriate messages if not. If the entity is an error entity (unknown or multiply defined, keep silent on the grounds that the error has already been reported elsewhere (e.g., at the declaration site of the entity). Otherwise, if f is defined at e return the messages that f (e) evaluates to. If f is not defined at e, keep silent.

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def collectMessages[T <: Product, U <: T](tree: Tree[T, U])(messages: ==>[T, Messages]): Messages

    Permalink

    Recursively collect all messages in the given tree using the partial function messages at all nodes where it is defined.

  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def message(value: AnyRef, label: String, cond: Boolean = true): Messages

    Permalink

    If cond is true make a singleton message list that associates the label with the start position recorded for value (if any).

    If cond is true make a singleton message list that associates the label with the start position recorded for value (if any). cond can be omitted and defaults to true.

  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def noMessages: Vector[Message]

    Permalink

    Return a value representing no messages.

  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped