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