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,
457
Debug.Assert(kind is Lexer.InterpolatedStringKind.Normal or Lexer.InterpolatedStringKind.
Verbatim
);
461
var prefix = kind is Lexer.InterpolatedStringKind.
Verbatim
? "@\"" : "\"";
Parser\Lexer_StringLiteral.cs (11)
349
return IsAtEnd(allowNewline: kind is InterpolatedStringKind.
Verbatim
or InterpolatedStringKind.MultiLineRaw);
417
kind = InterpolatedStringKind.
Verbatim
;
459
? InterpolatedStringKind.
Verbatim
505
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
522
Debug.Assert(kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
);
745
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
762
Debug.Assert(kind == InterpolatedStringKind.
Verbatim
);
794
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
831
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
843
Debug.Assert(kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
);
963
if (kind is InterpolatedStringKind.
Verbatim
&& _lexer.TextWindow.PeekChar(1) == '"')