15 references to Verbatim
Microsoft.CodeAnalysis.CSharp (15)
Parser\LanguageParser_InterpolatedString.cs (4)
182
Lexer.InterpolatedStringKind.
Verbatim
=> SyntaxKind.InterpolatedVerbatimStringStartToken,
354
Lexer.InterpolatedStringKind.
Verbatim
=> SyntaxKind.InterpolatedStringEndToken,
586
Debug.Assert(kind is Lexer.InterpolatedStringKind.Normal or Lexer.InterpolatedStringKind.
Verbatim
);
590
var prefix = kind is Lexer.InterpolatedStringKind.
Verbatim
? "@\"" : "\"";
Parser\Lexer_StringLiteral.cs (11)
363
return IsAtEnd(allowNewline: kind is InterpolatedStringKind.
Verbatim
or InterpolatedStringKind.MultiLineRaw);
431
kind = InterpolatedStringKind.
Verbatim
;
482
? InterpolatedStringKind.
Verbatim
528
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
548
Debug.Assert(kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
);
771
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
788
Debug.Assert(kind == InterpolatedStringKind.
Verbatim
);
820
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
857
if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
)
869
Debug.Assert(kind is InterpolatedStringKind.Normal or InterpolatedStringKind.
Verbatim
);
989
if (kind is InterpolatedStringKind.
Verbatim
&& _lexer.TextWindow.PeekChar(1) == '"')