6 references to GetLiteralExpression
Microsoft.CodeAnalysis.CSharp (4)
Parser\DirectiveParser.cs (1)
840return SyntaxFactory.LiteralExpression(SyntaxFacts.GetLiteralExpression(k), this.EatToken());
Parser\LanguageParser.cs (1)
11876return _syntaxFactory.LiteralExpression(SyntaxFacts.GetLiteralExpression(tk), this.EatToken());
Parser\LanguageParser_InterpolatedString.cs (1)
20var expressionKind = SyntaxFacts.GetLiteralExpression(originalToken.Kind);
Syntax\SyntaxKindFacts.cs (1)
591return GetLiteralExpression(token) != SyntaxKind.None;
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Parsing\ExpressionParsingTests.cs (1)
456var opKind = SyntaxFacts.GetLiteralExpression(kind);
Syntax\SyntaxTests.cs (1)
244Assert.Equal(expressionKind, SyntaxFacts.GetLiteralExpression(tokenKind));