1 write to Value
Microsoft.CodeAnalysis (1)
TreeDumper.cs (1)
241
this.
Value
= value;
19 references to Value
Microsoft.CodeAnalysis (8)
TreeDumper.cs (8)
86
if (node.
Value
!= null)
88
_sb.AppendFormat(": {0}", DumperString(node.
Value
));
114
&& node.
Value
is IList { Count: 0 })
120
&& node.
Value
is false)
147
if (node.
Value
!= null)
149
_sb.AppendFormat("<{0}>{1}</{0}>", node.Text, DumperString(node.
Value
));
162
if (node.
Value
!= null)
165
_sb.AppendFormat("{0}", DumperString(node.
Value
));
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (11)
Semantics\OperatorTests.cs (9)
3229
where node.
Value
!= null
3230
select node.
Value
.ToString());
3248
"@operator" => ((BinaryOperatorSignature)child.
Value
).Kind.ToString(),
3252
"conversion" => node.Children.ElementAt(1).
Value
,
3258
_ => child.
Value
.ToString()
3268
select edge.Key.Text + ": " + (node.
Value
!= null ? node.
Value
.ToString() : "<null>"));
3298
let typeArguments = node["typeArgumentsOpt"].
Value
as ImmutableArray<TypeWithAnnotations>?
3299
select name.
Value
.ToString() + FormatTypeArgumentList(typeArguments));
Semantics\OverloadResolutionTestBase.cs (2)
39
.Where(x => x.Text == "method" && x.
Value
!= null)
40
.Select(x => x.
Value
)