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