org.kiama.example.transform

Analysis

object Analysis extends AnyRef

Operator priority resolution and name analysis for transformation compiler. Transform the generic operator tree from the parser into one that correctly represents the precedence of the operators. Operators are assumed to be left associative.

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

Type Members

  1. type Stacks = (List[String], List[Exp])

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. implicit val ast : (ExpR) ⇒ Exp

    Version of op_tree that splices the new tree into the old.

    Version of op_tree that splices the new tree into the old. Available as an implicit so that Exp attributes called on ExpR are forwarded to op_tree.

    Attributes
    implicit
  8. def clone (): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  11. lazy val errors : (Exp) ⇒ Unit

    Report errors in an expression.

    Report errors in an expression. Currently only variables that are used but not declared. Multiple declarations of the same variable are ok.

  12. lazy val eval_top : ((List[String], String, List[Exp])) ⇒ (ExpR) ⇒ ()

  13. def finalize (): Unit

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

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

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

    Attributes
    final
    Definition Classes
    Any
  17. lazy val lookup : (String) ⇒ (Attributable) ⇒ Option[VarDecl]

    Lookup a name at a particular node, returning a Some value containing the associated declaration or None if there no such declaration.

  18. def ne (arg0: AnyRef): Boolean

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

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

    Attributes
    final
    Definition Classes
    AnyRef
  21. lazy val op_tree : (ExpR) ⇒ Exp

  22. lazy val ops : (ExpR) ⇒ ()

  23. lazy val prio : (String) ⇒ (ASTNode) ⇒ Int

  24. lazy val prioenv : (Program) ⇒ Map[String, Int]

  25. def synchronized [T0] (arg0: ⇒ T0): T0

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

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any