MemoryAccess.table constructor

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

Constructor to encode table lookup by key on callee.

Implementation

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