8 references to CurrentChar
Microsoft.CodeAnalysis.Features (8)
EmbeddedLanguages\StackFrame\StackFrameLexer.cs (7)
91
var ch =
CurrentChar
;
110
ch =
CurrentChar
;
153
if (GetKind(
CurrentChar
) == kind)
179
if (isMatch(GetKind(
CurrentChar
)))
314
while (IsNumber(
CurrentChar
))
334
if (IsAsciiAlphaCharacter(
CurrentChar
))
485
while (IsBlank(
CurrentChar
))
EmbeddedLanguages\StackFrame\StackFrameParser.cs (1)
283
var currentChar = _lexer.
CurrentChar
.Value;