31 references to Decimal
Microsoft.CodeAnalysis.CSharp (31)
Binder\Binder_Patterns.cs (1)
1708SpecialType.System_Decimal => BinaryOperatorKind.Decimal,
Binder\Semantics\Operators\BinaryOperatorEasyOut.cs (2)
27private const BinaryOperatorKind DEC = BinaryOperatorKind.Decimal; 37private const BinaryOperatorKind LDC = BinaryOperatorKind.Lifted | BinaryOperatorKind.Decimal;
Binder\Semantics\Operators\OperatorKind.cs (22)
363DecimalMultiplication = Decimal | Multiplication, 373LiftedDecimalMultiplication = Lifted | Decimal | Multiplication, 385DecimalDivision = Decimal | Division, 395LiftedDecimalDivision = Lifted | Decimal | Division, 407DecimalRemainder = Decimal | Remainder, 417LiftedDecimalRemainder = Lifted | Decimal | Remainder, 429DecimalAddition = Decimal | Addition, 441LiftedDecimalAddition = Lifted | Decimal | Addition, 468DecimalSubtraction = Decimal | Subtraction, 481LiftedDecimalSubtraction = Lifted | Decimal | Subtraction, 549DecimalEqual = Decimal | Equal, 562LiftedDecimalEqual = Lifted | Decimal | Equal, 580DecimalNotEqual = Decimal | NotEqual, 593LiftedDecimalNotEqual = Lifted | Decimal | NotEqual, 611DecimalLessThan = Decimal | LessThan, 622LiftedDecimalLessThan = Lifted | Decimal | LessThan, 636DecimalGreaterThan = Decimal | GreaterThan, 647LiftedDecimalGreaterThan = Lifted | Decimal | GreaterThan, 661DecimalLessThanOrEqual = Decimal | LessThanOrEqual, 672LiftedDecimalLessThanOrEqual = Lifted | Decimal | LessThanOrEqual, 686DecimalGreaterThanOrEqual = Decimal | GreaterThanOrEqual, 697LiftedDecimalGreaterThanOrEqual = Lifted | Decimal | GreaterThanOrEqual,
Compilation\BuiltInOperators.cs (4)
756case BinaryOperatorKind.Decimal: return _compilation.GetSpecialType(SpecialType.System_Decimal); 788case BinaryOperatorKind.Decimal: return _compilation.GetSpecialType(SpecialType.System_Decimal); 820case BinaryOperatorKind.Decimal: return _compilation.GetSpecialType(SpecialType.System_Decimal); 847BinaryOperatorKind.Decimal => _compilation.GetSpecialType(SpecialType.System_Decimal),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (2)
1014result = BinaryOperatorKind.Decimal; 1116case BinaryOperatorKind.Decimal: