MemoryAccess.table constructor

MemoryAccess.table(
  1. Token token,
  2. MathExpr callee,
  3. MathExpr key
)

Constructor to encode table lookup by key on callee.

Implementation

MemoryAccess.table(super.token, this.callee, MathExpr key)
  : type = MemoryAccessType.table,
    args = [key];