1 write to Text
Microsoft.CodeAnalysis (1)
TreeDumper.cs (1)
247
this.
Text
= text;
26 references to Text
Microsoft.CodeAnalysis (10)
TreeDumper.cs (10)
86
_sb.Append(node.
Text
);
114
if (node.
Text
is "locals" or "localFunctions"
120
if (node.
Text
is "hasErrors" or "isSuppressed" or "isRef"
126
if (node.
Text
is "functionType")
131
if (node.
Text
is "aliasOpt" or "boundContainingTypeOpt" or "boundDimensionsOpt" or "deconstructMethod"
156
_sb.AppendFormat("<{0}>{1}</{0}>", node.
Text
, DumperString(node.Value));
160
_sb.AppendFormat("<{0} />", node.
Text
);
167
_sb.AppendFormat("<{0}>", node.
Text
);
188
_sb.AppendFormat("</{0}>", node.
Text
);
260
return Children.FirstOrDefault(c => c.
Text
== child);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (16)
Semantics\OperatorTests.cs (15)
3229
where node.
Text
== "operatorKind"
3239
where node != null && (node.
Text
== "eventAssignmentOperator" || node.
Text
== "compoundAssignmentOperator")
3241
where child.
Text
== "@operator" ||
3242
child.
Text
== "isAddition" ||
3243
child.
Text
== "isDynamic" ||
3244
child.
Text
== "leftConversion" ||
3245
child.
Text
== "finalConversion"
3246
select child.
Text
+ ": " +
3247
(child.
Text
switch
3251
(node.
Text
switch
3255
_ => throw ExceptionUtilities.UnexpectedValue(node.
Text
)
3268
where node.
Text
== "type"
3269
select edge.Key.
Text
+ ": " + (node.Value != null ? node.Value.ToString() : "<null>"));
3297
where node.
Text
== "dynamicMemberAccess"
Semantics\OverloadResolutionTestBase.cs (1)
41
.Where(x => x.
Text
== "method" && x.Value != null)