BoundVariable constructor

BoundVariable(
  1. Expression expr
)

Creates an anonymous variable which is bound to the given expression.

Implementation

BoundVariable(Expression expr) : super('anon') {
  this.value = expr;
}