visitDeclVar method
Implementation
@override
GzBaseNode visitDeclVar(DeclVar declVar) {
final id = declVar.id.lexeme;
final value = declVar.init?.accept(this);
return node(
'local $id',
color: skyBlue,
shape: 'box',
children: value != null ? [value] : null,
);
}