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