Trait

inox.ast

Constructors

Related Doc: package ast

Permalink

trait Constructors extends AnyRef

Provides constructors for Expressions.

The constructors implement some logic to simplify the tree and potentially use a different expression node if one is more suited.

Self Type
Trees
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Constructors
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. def and(exprs: Trees.Expr*): Trees.Expr

    Permalink

    Encoding of &&-expressions with arbitrary number of operands, and simplified.

    Encoding of &&-expressions with arbitrary number of operands, and simplified.

    See also

    And

  5. def andJoin(es: Seq[Trees.Expr]): Trees.Expr

    Permalink

    Encoding of &&-expressions with arbitrary number of operands as a sequence, and simplified.

    Encoding of &&-expressions with arbitrary number of operands as a sequence, and simplified.

    See also

    And

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def assume(pred: Trees.Expr, body: Trees.Expr): Trees.Expr

    Permalink

    Encoding of simplified assume(pred, body) (assumption).

    Encoding of simplified assume(pred, body) (assumption). Transforms

    assume(assume(pred1, pred2), body)

    and

    assume(pred1, assume(pred2, body))

    into

    assume(pred1 && pred2, body)
    See also

    Assume

  8. def clone(): AnyRef

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

    Permalink
    Definition Classes
    AnyRef
  10. def equality(a: Trees.Expr, b: Trees.Expr): Trees.Expr

    Permalink

    Encoding of simplified ... == ... (equality).

    Encoding of simplified ... == ... (equality).

    See also

    Equals

  11. def equals(arg0: Any): Boolean

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def forall(args: Seq[Trees.ValDef], body: Trees.Expr): Trees.Expr

    Permalink

    Encoding of simplified forall(args, body) (universal quantification).

    Encoding of simplified forall(args, body) (universal quantification).

    See also

    Forall

  14. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def implies(lhs: Trees.Expr, rhs: Trees.Expr): Trees.Expr

    Permalink

    Encoding of simplified ... ==> ... (implication)

    Encoding of simplified ... ==> ... (implication)

    See also

    Implies

  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def minus(lhs: Trees.Expr, rhs: Trees.Expr): Trees.Expr

    Permalink

    Encoding of simplified ... - ... (minus).

    Encoding of simplified ... - ... (minus).

    See also

    Minus

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

    Permalink
    Definition Classes
    AnyRef
  20. def not(e: Trees.Expr): Trees.Expr

    Permalink

    Encoding of simplified !-expressions .

    Encoding of simplified !-expressions .

    See also

    Not

  21. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  23. def or(exprs: Trees.Expr*): Trees.Expr

    Permalink

    Encoding of ||-expressions with arbitrary number of operands, and simplified.

    Encoding of ||-expressions with arbitrary number of operands, and simplified.

    See also

    Or

  24. def orJoin(es: Seq[Trees.Expr]): Trees.Expr

    Permalink

    Encoding of ||-expressions with arbitrary number of operands as a sequence, and simplified.

    Encoding of ||-expressions with arbitrary number of operands as a sequence, and simplified.

    See also

    Or

  25. def plus(lhs: Trees.Expr, rhs: Trees.Expr): Trees.Expr

    Permalink

    Encoding of simplified ... + ... (plus).

    Encoding of simplified ... + ... (plus).

    See also

    Plus

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

    Permalink
    Definition Classes
    AnyRef
  27. def times(lhs: Trees.Expr, rhs: Trees.Expr): Trees.Expr

    Permalink

    Encoding of simplified ... * ... (times).

    Encoding of simplified ... * ... (times).

    See also

    Times

  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. def tupleTypeWrap(tps: Seq[Trees.Type]): Trees.Type

    Permalink

    Wraps the sequence of types as a tuple.

    Wraps the sequence of types as a tuple. If the sequence contains a single type, it is returned instead. If the sequence is empty, the UnitType is returned.

    See also

    Types.TupleType

  30. def tupleWrap(es: Seq[Trees.Expr]): Trees.Expr

    Permalink

    Wraps the sequence of expressions as a tuple.

    Wraps the sequence of expressions as a tuple. If the sequence contains a single expression, it is returned instead.

    See also

    Tuple

  31. def uminus(e: Trees.Expr): Trees.Expr

    Permalink
  32. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped