8 references to CurrentChar
Microsoft.CodeAnalysis.Features (8)
EmbeddedLanguages\StackFrame\StackFrameLexer.cs (7)
91
var ch =
CurrentChar
;
104
ch =
CurrentChar
;
147
if (GetKind(
CurrentChar
) == kind)
173
if (isMatch(GetKind(
CurrentChar
)))
308
while (IsNumber(
CurrentChar
))
328
if (IsAsciiAlphaCharacter(
CurrentChar
))
466
while (IsBlank(
CurrentChar
))
EmbeddedLanguages\StackFrame\StackFrameParser.cs (1)
277
var currentChar = _lexer.
CurrentChar
.Value;