14 references to IsUnconvertedInterpolatedStringAddition
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder_Expressions.cs (1)
3175
Debug.Assert(argument is BoundUnconvertedInterpolatedString or BoundBinaryOperator {
IsUnconvertedInterpolatedStringAddition
: true });
Binder\Binder_InterpolatedString.cs (3)
304
Debug.Assert(binaryOperator.
IsUnconvertedInterpolatedStringAddition
);
462
Debug.Assert(binaryOperator.
IsUnconvertedInterpolatedStringAddition
);
856
Debug.Assert(unconvertedString is BoundUnconvertedInterpolatedString or BoundBinaryOperator {
IsUnconvertedInterpolatedStringAddition
: true });
Binder\Binder_Operators.cs (3)
554
&& left is BoundUnconvertedInterpolatedString or BoundBinaryOperator {
IsUnconvertedInterpolatedStringAddition
: true }
555
&& right is BoundUnconvertedInterpolatedString or BoundBinaryOperator {
IsUnconvertedInterpolatedStringAddition
: true })
740
Debug.Assert(current.
IsUnconvertedInterpolatedStringAddition
);
Binder\Semantics\Conversions\ConversionsBase.cs (1)
1069
case BoundKind.BinaryOperator when ((BoundBinaryOperator)sourceExpression).
IsUnconvertedInterpolatedStringAddition
:
Binder\Semantics\OverloadResolution\OverloadResolution.cs (3)
2162
Debug.Assert(!isInterpolatedStringHandlerConversion || arguments[i] is BoundUnconvertedInterpolatedString or BoundBinaryOperator {
IsUnconvertedInterpolatedStringAddition
: true });
2459
node is BoundUnconvertedInterpolatedString { ConstantValueOpt: null } or BoundBinaryOperator {
IsUnconvertedInterpolatedStringAddition
: true, ConstantValueOpt: null })
3678
if (argument is BoundUnconvertedInterpolatedString or BoundBinaryOperator {
IsUnconvertedInterpolatedStringAddition
: true }
BoundTree\BoundExpression.cs (1)
70
return ((BoundBinaryOperator)this).
IsUnconvertedInterpolatedStringAddition
;
BoundTree\BoundNodeExtensions.cs (2)
156
Debug.Assert(typeof(TInterpolatedStringType) == typeof(BoundInterpolatedString) || binary.
IsUnconvertedInterpolatedStringAddition
);
242
Debug.Assert(typeof(TInterpolatedStringType) == typeof(BoundInterpolatedString) || binary.
IsUnconvertedInterpolatedStringAddition
);