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