15 references to Verbatim
Microsoft.CodeAnalysis.CSharp (15)
Parser\LanguageParser_InterpolatedString.cs (4)
85
Lexer.InterpolatedStringKind.
Verbatim
=> SyntaxKind.InterpolatedVerbatimStringStartToken,
246
Lexer.InterpolatedStringKind.
Verbatim
=> SyntaxKind.InterpolatedStringEndToken,
459
Debug.Assert(kind is Lexer.InterpolatedStringKind.Normal or Lexer.InterpolatedStringKind.
Verbatim
);
463
var prefix = kind is Lexer.InterpolatedStringKind.
Verbatim
? "@\"" : "\"";
Parser\Lexer_StringLiteral.cs (11)
356
return IsAtEnd(allowNewline: kind is InterpolatedStringKind.
Verbatim
or InterpolatedStringKind.MultiLineRaw);
424
kind = InterpolatedStringKind.
Verbatim
;
466
? InterpolatedStringKind.
Verbatim
512
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
529
Debug.Assert(kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
);
752
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
769
Debug.Assert(kind == InterpolatedStringKind.
Verbatim
);
801
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
838
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
850
Debug.Assert(kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
);
970
if (kind is InterpolatedStringKind.
Verbatim
&& _lexer.TextWindow.PeekChar(1) == '"')