org.kiama.example.prolog

Interpreter

object Interpreter

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Interpreter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class DisplayGoal(ps: Set[(String, Term)]) extends Goal with Product with Serializable

    Display goal.

  2. sealed trait Goal extends AnyRef

    Goals.

  3. case class MatchGoal(left: Term, right: Term) extends Goal with Product with Serializable

    Match goal (written as "left == right" in notes).

  4. case class TermGoal(term: Term) extends Goal with Product with Serializable

    Term goal.

  5. case class UnifyGoal(left: Term, right: Term) extends Goal with Product with Serializable

    Unification goal (written as "left ?= right" in notes).

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  12. var glstack: Stack[List[Goal]]

    The goal list stack.

    The goal list stack. Each entry is a list of goals that are to be satisfied.

  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. def interpret(query: Term, program: Program, emitter: Emitter): Unit

    Interpret a query against the given program.

  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. def rename[T <: SourceNode](t: T): T

    Rename count.

    Rename count. Incremented each time rename is called so we get unique names each time.

  20. var renamecount: Int

    Rename count.

    Rename count. Incremented that each time rename is called so we get unique names each time.

  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

No Group