Trait

inox.transformers

ScopeSimplifier

Related Doc: package transformers

Permalink

trait ScopeSimplifier extends Transformer

Simplifies variable ids in scope

Linear Supertypes
Transformer, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScopeSimplifier
  2. Transformer
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Env

    Permalink
    Definition Classes
    Transformer
  2. case class Scope(inScope: Set[ast.Trees.ValDef] = Set(), oldToNew: Map[ast.Trees.ValDef, ast.Trees.ValDef] = Map(), funDefs: Map[Identifier, Identifier] = Map()) extends Product with Serializable

    Permalink

Abstract Value Members

  1. abstract val initEnv: Env

    Permalink

    The default initial Env

    The default initial Env

    Definition Classes
    Transformer
  2. abstract def rec(e: ast.Trees.Expr, env: Env): ast.Trees.Expr

    Permalink

    The function that recursively traverses the expression

    The function that recursively traverses the expression

    e

    The current expression

    env

    The current Env

    returns

    The transformed expression

    Attributes
    protected
    Definition Classes
    Transformer
  3. abstract val trees: Trees

    Permalink
    Definition Classes
    Transformer

Concrete 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 clone(): AnyRef

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def genId(vd: ast.Trees.ValDef, scope: Scope): ast.Trees.ValDef

    Permalink
    Attributes
    protected
  10. final def getClass(): Class[_]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  16. def rec(e: ast.Trees.Expr, scope: Scope): ast.Trees.Expr

    Permalink
    Attributes
    protected
  17. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def transform(fd: ast.Trees.FunDef): ast.Trees.Expr

    Permalink

    Transform the body of a FunDef

    Transform the body of a FunDef

    Definition Classes
    Transformer
  20. final def transform(e: ast.Trees.Expr): ast.Trees.Expr

    Permalink

    Transform an Expr with the initial environment

    Transform an Expr with the initial environment

    Definition Classes
    Transformer
  21. final def transform(e: ast.Trees.Expr, init: Env): ast.Trees.Expr

    Permalink

    Transform an Expr with the specified environment

    Transform an Expr with the specified environment

    Definition Classes
    Transformer
  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 Transformer

Inherited from AnyRef

Inherited from Any

Ungrouped