1 override of DumperString
Microsoft.CodeAnalysis.CSharp (1)
BoundTree\BoundNode.cs (1)
413
protected override string
DumperString
(object o)
5 references to DumperString
Microsoft.CodeAnalysis (4)
TreeDumper.cs (4)
89
_sb.AppendFormat(": {0}",
DumperString
(node.Value));
150
_sb.AppendFormat("<{0}>{1}</{0}>", node.Text,
DumperString
(node.Value));
166
_sb.AppendFormat("{0}",
DumperString
(node.Value));
221
return string.Format("{{{0}}}", string.Join(", ", seq.Cast<object>().Select(
DumperString
).ToArray()));
Microsoft.CodeAnalysis.CSharp (1)
BoundTree\BoundNode.cs (1)
415
return (o is SynthesizedLocal l) ? l.DumperString() : base.
DumperString
(o);