8 references to CurrentChar
Microsoft.CodeAnalysis.Features (8)
EmbeddedLanguages\RegularExpressions\RegexLexer.cs (8)
65var ch = this.CurrentChar; 237IsEscapeCategoryChar(this.CurrentChar)) 278while (Position < Text.Length && this.CurrentChar is var ch && IsDecimalDigit(ch)) 321while (Position < Text.Length && RegexCharClass.IsBoundaryWordChar(this.CurrentChar)) 342while (Position < Text.Length && IsOptionChar(this.CurrentChar)) 385if (Position < Text.Length && IsHexChar(this.CurrentChar)) 431if (Position < Text.Length && IsOctalDigit(this.CurrentChar)) 433var octalVal = this.CurrentChar.Value - '0';