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