15 references to IsUnconvertedInterpolatedStringAddition
Microsoft.CodeAnalysis.CSharp (15)
Binder\Binder_Expressions.cs (3)
3515Debug.Assert(argument is BoundUnconvertedInterpolatedString or BoundBinaryOperator { IsUnconvertedInterpolatedStringAddition: true }); 3690Debug.Assert(unconvertedString is BoundUnconvertedInterpolatedString or BoundBinaryOperator { IsUnconvertedInterpolatedStringAddition: true }); 6395({ Type: null } or BoundLiteral or BoundUnconvertedInterpolatedString or BoundBinaryOperator { IsUnconvertedInterpolatedStringAddition: true }) &&
Binder\Binder_InterpolatedString.cs (2)
442Debug.Assert(binaryOperator.IsUnconvertedInterpolatedStringAddition); 608Debug.Assert(binaryOperator.IsUnconvertedInterpolatedStringAddition);
Binder\Binder_Operators.cs (3)
554&& left is BoundUnconvertedInterpolatedString or BoundBinaryOperator { IsUnconvertedInterpolatedStringAddition: true } 555&& right is BoundUnconvertedInterpolatedString or BoundBinaryOperator { IsUnconvertedInterpolatedStringAddition: true }) 770Debug.Assert(current.IsUnconvertedInterpolatedStringAddition);
Binder\Semantics\Conversions\ConversionsBase.cs (1)
1106case BoundKind.BinaryOperator when ((BoundBinaryOperator)sourceExpression).IsUnconvertedInterpolatedStringAddition:
Binder\Semantics\OverloadResolution\OverloadResolution.cs (3)
2618Debug.Assert(!isInterpolatedStringHandlerConversion || arguments[i] is BoundUnconvertedInterpolatedString or BoundBinaryOperator { IsUnconvertedInterpolatedStringAddition: true }); 2915node is BoundUnconvertedInterpolatedString { ConstantValueOpt: null } or BoundBinaryOperator { IsUnconvertedInterpolatedStringAddition: true, ConstantValueOpt: null }) 4443&& argument is BoundUnconvertedInterpolatedString or BoundBinaryOperator { IsUnconvertedInterpolatedStringAddition: true }
BoundTree\BoundExpression.cs (1)
90return ((BoundBinaryOperator)this).IsUnconvertedInterpolatedStringAddition;
BoundTree\BoundNodeExtensions.cs (2)
156Debug.Assert(typeof(TInterpolatedStringType) == typeof(BoundInterpolatedString) || binary.IsUnconvertedInterpolatedStringAddition); 242Debug.Assert(typeof(TInterpolatedStringType) == typeof(BoundInterpolatedString) || binary.IsUnconvertedInterpolatedStringAddition);