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