5 references to GetSubText
Microsoft.CodeAnalysis.CSharp (1)
Syntax\SyntaxFactory.cs (1)
1913
return SourceText.From(text, Encoding.UTF8).
GetSubText
(offset);
Microsoft.CodeAnalysis.UnitTests (3)
Text\TextChangeTests.cs (3)
33
var subText = text.
GetSubText
(6);
77
var subText = text.
GetSubText
(6);
78
var subSubText = subText.
GetSubText
(subText.Length);
Microsoft.CodeAnalysis.VisualBasic (1)
Syntax\SyntaxNodeFactories.vb (1)
283
Return SourceText.From(text, Encoding.UTF8).
GetSubText
(offset)