processSetVariable method

void processSetVariable(
  1. SetVariable node
)

Implementation

void processSetVariable(SetVariable node) {
  get<SetVariable>()?.call(node);
  processObjectName(node.variable);
  processListExpr(node.value);
}