public override int VisitEvent(IEventSymbol symbol, StringBuilder argument) { argument.Append(new string(' ', 2 * _indent) + symbol.GetType().Name + " " + symbol.Name + ": "); symbol.Type.Accept(this, argument); argument.AppendLine(); return(_indent); }
public override void VisitEvent(IEventSymbol symbol) { _output.Append(new string(' ', 2 * _indent) + symbol.GetType().Name + " " + symbol.Name + ": "); symbol.Type.Accept(this); _output.AppendLine(); }