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