16 references to Literal
Microsoft.CodeAnalysis.CSharp (1)
Syntax\SyntaxFactory.cs (1)
353
return
Literal
(ObjectDisplay.FormatLiteral(value, ObjectDisplayOptions.None), value);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (4)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\CodeGeneration\EnumMemberGenerator.cs (1)
134
LiteralExpression(SyntaxKind.NumericLiteralExpression,
Literal
(numericLiteral.Token.Text, 1)),
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\CodeGeneration\ExpressionGenerator.cs (3)
83
sbyte val => GenerateLiteralExpression(type, val, LiteralSpecialValues.SByteSpecialValues, formatString: null, canUseFieldReference, (s, v) =>
Literal
(s, v), x => x < 0, x => (sbyte)-x, "128"),
84
short val => GenerateLiteralExpression(type, val, LiteralSpecialValues.Int16SpecialValues, formatString: null, canUseFieldReference, (s, v) =>
Literal
(s, v), x => x < 0, x => (short)-x, "32768"),
87
byte val => GenerateNonNegativeLiteralExpression(type, val, LiteralSpecialValues.ByteSpecialValues, formatString: null, canUseFieldReference, (s, v) =>
Literal
(s, v)),
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (3)
Generated\Syntax.Test.xml.Generated.cs (3)
10935
=> SyntaxFactory.LineDirectiveTrivia(SyntaxFactory.Token(SyntaxKind.HashToken), SyntaxFactory.Token(SyntaxKind.LineKeyword), SyntaxFactory.
Literal
("1", 1), default(SyntaxToken), SyntaxFactory.Token(SyntaxKind.EndOfDirectiveToken), new bool());
10938
=> SyntaxFactory.LineDirectivePosition(SyntaxFactory.Token(SyntaxKind.OpenParenToken), SyntaxFactory.
Literal
("1", 1), SyntaxFactory.Token(SyntaxKind.CommaToken), SyntaxFactory.
Literal
("1", 1), SyntaxFactory.Token(SyntaxKind.CloseParenToken));
Microsoft.CodeAnalysis.CSharp.Workspaces (7)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
3273
SyntaxKind.NumericLiteralExpression, SyntaxFactory.
Literal
("0", 0));
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\CodeGeneration\EnumMemberGenerator.cs (2)
134
LiteralExpression(SyntaxKind.NumericLiteralExpression,
Literal
(numericLiteral.Token.Text, 1)),
135
LiteralExpression(SyntaxKind.NumericLiteralExpression,
Literal
(shiftValue.ToString(), shiftValue)));
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\CodeGeneration\ExpressionGenerator.cs (4)
83
sbyte val => GenerateLiteralExpression(type, val, LiteralSpecialValues.SByteSpecialValues, formatString: null, canUseFieldReference, (s, v) =>
Literal
(s, v), x => x < 0, x => (sbyte)-x, "128"),
84
short val => GenerateLiteralExpression(type, val, LiteralSpecialValues.Int16SpecialValues, formatString: null, canUseFieldReference, (s, v) =>
Literal
(s, v), x => x < 0, x => (short)-x, "32768"),
85
int val => GenerateLiteralExpression(type, val, LiteralSpecialValues.Int32SpecialValues, formatString: null, canUseFieldReference,
Literal
, x => x < 0, x => -x, "2147483648"),
87
byte val => GenerateNonNegativeLiteralExpression(type, val, LiteralSpecialValues.ByteSpecialValues, formatString: null, canUseFieldReference, (s, v) =>
Literal
(s, v)),
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (1)
Formatting\FormattingElasticTriviaTests.cs (1)
53
Literal
("99", 99), false))],