1 write to Text
Microsoft.CodeAnalysis (1)
TreeDumper.cs (1)
240this.Text = text;
25 references to Text
Microsoft.CodeAnalysis (9)
TreeDumper.cs (9)
85_sb.Append(node.Text); 113if (node.Text is "locals" or "localFunctions" 119if (node.Text is "hasErrors" or "isSuppressed" or "isRef" 125if (node.Text is "functionType") 149_sb.AppendFormat("<{0}>{1}</{0}>", node.Text, DumperString(node.Value)); 153_sb.AppendFormat("<{0} />", node.Text); 160_sb.AppendFormat("<{0}>", node.Text); 181_sb.AppendFormat("</{0}>", node.Text); 253return Children.FirstOrDefault(c => c.Text == child);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (16)
Semantics\OperatorTests.cs (15)
3228where node.Text == "operatorKind" 3238where node != null && (node.Text == "eventAssignmentOperator" || node.Text == "compoundAssignmentOperator") 3240where child.Text == "@operator" || 3241child.Text == "isAddition" || 3242child.Text == "isDynamic" || 3243child.Text == "leftConversion" || 3244child.Text == "finalConversion" 3245select child.Text + ": " + 3246(child.Text switch 3250(node.Text switch 3254_ => throw ExceptionUtilities.UnexpectedValue(node.Text) 3267where node.Text == "type" 3268select edge.Key.Text + ": " + (node.Value != null ? node.Value.ToString() : "<null>")); 3296where node.Text == "dynamicMemberAccess"
Semantics\OverloadResolutionTestBase.cs (1)
39.Where(x => x.Text == "method" && x.Value != null)