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