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