MemoryAccess.call constructor

MemoryAccess.call(
  1. Token op,
  2. MathExpr callee,
  3. List<MathExpr> args
)

Constructor to encode function calls on callee with args.

Implementation

MemoryAccess.call(this.op, this.callee, this.args)
  : type = MemoryAccessType.call;