2 writes to Text
Microsoft.CodeAnalysis.CSharp (2)
Syntax\InternalSyntax\SyntaxTrivia.cs (2)
17
this.
Text
= text;
27
this.
Text
= reader.ReadString();
10 references to Text
Microsoft.CodeAnalysis.CSharp (10)
Syntax\InternalSyntax\SyntaxTrivia.cs (10)
28
this.FullWidth = this.
Text
.Length;
44
writer.WriteString(this.
Text
);
54
return this.
Text
;
59
return this.
Text
;
71
Debug.Assert(this.FullWidth == this.
Text
.Length);
88
return new SyntaxTrivia(this.Kind, this.
Text
, diagnostics, GetAnnotations());
93
return new SyntaxTrivia(this.Kind, this.
Text
, GetDiagnostics(), annotations);
108
writer.Write(
Text
);
123
if (this.
Text
!= ((SyntaxTrivia)other).
Text
)