8 references to CurrentChar
Microsoft.CodeAnalysis.Features (8)
EmbeddedLanguages\RegularExpressions\RegexLexer.cs (8)
63var ch = this.CurrentChar; 234while (Position < Text.Length && IsEscapeCategoryChar(this.CurrentChar)) 272while (Position < Text.Length && this.CurrentChar is var ch && IsDecimalDigit(ch)) 315while (Position < Text.Length && RegexCharClass.IsBoundaryWordChar(this.CurrentChar)) 336while (Position < Text.Length && IsOptionChar(this.CurrentChar)) 379if (Position < Text.Length && IsHexChar(this.CurrentChar)) 425if (Position < Text.Length && IsOctalDigit(this.CurrentChar)) 427var octalVal = this.CurrentChar.Value - '0';