3 writes to Text
Microsoft.VisualStudio.LanguageServices.New.IntegrationTests (3)
InProcess\InputKey.cs (3)
23Text = null; 31Text = null; 39Text = text;
10 references to Text
Microsoft.VisualStudio.LanguageServices.New.IntegrationTests (10)
InProcess\InputKey.cs (10)
67else if (Text is not null) 70while (offset < Text.Length) 72if (Text[offset] == '\r' && offset < Text.Length - 1 && Text[offset + 1] == '\n') 78else if (Text[offset] == '\n') 84else if (Text[offset] == '\t') 92var nextSpecial = Text.IndexOfAny(new[] { '\r', '\n', '\t' }, offset); 93var endOfCurrentSegment = nextSpecial < 0 ? Text.Length : nextSpecial; 94simulator.Keyboard.TextEntry(Text[offset..endOfCurrentSegment]);