15 references to Verbatim
Microsoft.CodeAnalysis.CSharp (15)
Parser\LanguageParser_InterpolatedString.cs (4)
85Lexer.InterpolatedStringKind.Verbatim => SyntaxKind.InterpolatedVerbatimStringStartToken, 246Lexer.InterpolatedStringKind.Verbatim => SyntaxKind.InterpolatedStringEndToken, 457Debug.Assert(kind is Lexer.InterpolatedStringKind.Normal or Lexer.InterpolatedStringKind.Verbatim); 461var prefix = kind is Lexer.InterpolatedStringKind.Verbatim ? "@\"" : "\"";
Parser\Lexer_StringLiteral.cs (11)
349return IsAtEnd(allowNewline: kind is InterpolatedStringKind.Verbatim or InterpolatedStringKind.MultiLineRaw); 417kind = InterpolatedStringKind.Verbatim; 459? InterpolatedStringKind.Verbatim 505if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.Verbatim) 522Debug.Assert(kind is InterpolatedStringKind.Normal or InterpolatedStringKind.Verbatim); 745if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.Verbatim) 762Debug.Assert(kind == InterpolatedStringKind.Verbatim); 794if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.Verbatim) 831if (kind is InterpolatedStringKind.Normal or InterpolatedStringKind.Verbatim) 843Debug.Assert(kind is InterpolatedStringKind.Normal or InterpolatedStringKind.Verbatim); 963if (kind is InterpolatedStringKind.Verbatim && _lexer.TextWindow.PeekChar(1) == '"')