1 write to _text
Microsoft.Build.Framework (1)
Utilities\MessageParser.cs (1)
196_text = text;
23 references to _text
Microsoft.Build.Framework (23)
Utilities\MessageParser.cs (23)
203=> _position < _text.Length 204? _text.Substring(_position) 209while (_position < _text.Length && char.IsWhiteSpace(_text[_position])) 217Assumed.LessThan(_position, _text.Length); 218Assumed.Equal(_text[_position], c); 225if (_text.Length < _position + 8 || 226_text[_position] is not 'M' || 227_text[_position + 1] is not 'S' || 228_text[_position + 2] is not 'B' || 229!char.IsAsciiDigit(_text[_position + 3]) || 230!char.IsAsciiDigit(_text[_position + 4]) || 231!char.IsAsciiDigit(_text[_position + 5]) || 232!char.IsAsciiDigit(_text[_position + 6]) || 233_text[_position + 7] is not ':') 253code = _text.Substring(start, _position - start); 264while (_position < _text.Length && char.IsAsciiLetter(_text[_position])) 277while (_position < _text.Length && char.IsAsciiDigit(_text[_position])) 289return _position < _text.Length && _text[_position] is ':'; 302code = _text.Substring(start, _position - start);