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