8 references to CurrentChar
Microsoft.CodeAnalysis.Features (8)
EmbeddedLanguages\RegularExpressions\RegexLexer.cs (8)
65var ch = this.CurrentChar; 236while (Position < Text.Length && IsEscapeCategoryChar(this.CurrentChar)) 274while (Position < Text.Length && this.CurrentChar is var ch && IsDecimalDigit(ch)) 317while (Position < Text.Length && RegexCharClass.IsBoundaryWordChar(this.CurrentChar)) 338while (Position < Text.Length && IsOptionChar(this.CurrentChar)) 381if (Position < Text.Length && IsHexChar(this.CurrentChar)) 427if (Position < Text.Length && IsOctalDigit(this.CurrentChar)) 429var octalVal = this.CurrentChar.Value - '0';