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