visitAssignStmt method
Implementation
@override
GzBaseNode visitAssignStmt(AssignStmt assignStmt) {
final lhs = assignStmt.lhs.accept(this);
final rhs = assignStmt.rhs.accept(this);
final op = assignStmt.token.lexeme;
return node(op, color: 'black', fontColor: 'white', children: [lhs, rhs]);
}