Esempio n. 1
0
 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);
 }
Esempio n. 2
0
 public override void VisitEvent(IEventSymbol symbol)
 {
     _output.Append(new string(' ', 2 * _indent) + symbol.GetType().Name + " " + symbol.Name + ": ");
     symbol.Type.Accept(this);
     _output.AppendLine();
 }