org.kiama.example.til

AST

object AST extends AnyRef

AST the basic Tiny Imperative Language.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. AST
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. case class Add (l: Exp, r: Exp) extends Exp with Product with Serializable

  2. case class Assign (i: Id, e: Exp) extends Stat with Product with Serializable

  3. case class Decl (i: Id) extends Stat with Product with Serializable

  4. case class Div (l: Exp, r: Exp) extends Exp with Product with Serializable

  5. case class Eq (l: Exp, r: Exp) extends Exp with Product with Serializable

  6. class Exp extends AnyRef

    Attributes
    sealed abstract
  7. case class For (i: Id, f: Exp, t: Exp, b: Seq[Stat]) extends Stat with Product with Serializable

  8. case class Id (s: String) extends Product with Serializable

  9. case class IfElse (e: Exp, t: Seq[Stat], f: Seq[Stat]) extends Stat with Product with Serializable

  10. case class IfThen (e: Exp, t: Seq[Stat]) extends Stat with Product with Serializable

  11. case class Mul (l: Exp, r: Exp) extends Exp with Product with Serializable

  12. case class Ne (l: Exp, r: Exp) extends Exp with Product with Serializable

  13. case class Num (n: Int) extends Exp with Product with Serializable

  14. case class Program (ss: Seq[Stat]) extends Product with Serializable

  15. case class Read (i: Id) extends Stat with Product with Serializable

  16. class Stat extends AnyRef

    Attributes
    sealed abstract
  17. case class Str (s: String) extends Exp with Product with Serializable

  18. case class Sub (l: Exp, r: Exp) extends Exp with Product with Serializable

  19. case class Var (i: Id) extends Exp with Product with Serializable

  20. case class While (e: Exp, b: Seq[Stat]) extends Stat with Product with Serializable

  21. case class Write (e: Exp) extends Stat with Product with Serializable

Value Members

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

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

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

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  12. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  13. def isInstanceOf [T0] : Boolean

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

    Attributes
    final
    Definition Classes
    AnyRef
  15. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  16. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  17. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  18. def toString (): String

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any