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