9 references to CurrentChar
Microsoft.CodeAnalysis.Features (9)
EmbeddedLanguages\StackFrame\StackFrameLexer.cs (8)
89
var ch =
CurrentChar
;
108
ch =
CurrentChar
;
151
if (GetKind(
CurrentChar
) == kind)
177
if (isMatch(GetKind(
CurrentChar
)))
311
while (IsNumber(
CurrentChar
))
332
if (IsAsciiAlphaCharacter(
CurrentChar
))
352
while (IsNumber(
CurrentChar
))
491
while (IsBlank(
CurrentChar
))
EmbeddedLanguages\StackFrame\StackFrameParser.cs (1)
291
var currentChar = _lexer.
CurrentChar
.Value;