1 write to Value
Microsoft.CodeAnalysis (1)
TreeDumper.cs (1)
242
this.
Value
= value;
19 references to Value
Microsoft.CodeAnalysis (8)
TreeDumper.cs (8)
87
if (node.
Value
!= null)
89
_sb.AppendFormat(": {0}", DumperString(node.
Value
));
115
&& node.
Value
is IList { Count: 0 })
121
&& node.
Value
is false)
148
if (node.
Value
!= null)
150
_sb.AppendFormat("<{0}>{1}</{0}>", node.Text, DumperString(node.
Value
));
163
if (node.
Value
!= null)
166
_sb.AppendFormat("{0}", DumperString(node.
Value
));
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (11)
Semantics\OperatorTests.cs (9)
3230
where node.
Value
!= null
3231
select node.
Value
.ToString());
3249
"@operator" => ((BinaryOperatorSignature)child.
Value
).Kind.ToString(),
3253
"conversion" => node.Children.ElementAt(1).
Value
,
3259
_ => child.
Value
.ToString()
3269
select edge.Key.Text + ": " + (node.
Value
!= null ? node.
Value
.ToString() : "<null>"));
3299
let typeArguments = node["typeArgumentsOpt"].
Value
as ImmutableArray<TypeWithAnnotations>?
3300
select name.
Value
.ToString() + FormatTypeArgumentList(typeArguments));
Semantics\OverloadResolutionTestBase.cs (2)
41
.Where(x => x.Text == "method" && x.
Value
!= null)
42
.Select(x => x.
Value
)