MemoryAccess.call constructor

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

Constructor to encode function calls on callee with args.

Implementation

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