5 instantiations of BoundInterpolatedString
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_InterpolatedString.cs (4)
267=> new BoundInterpolatedString( 362return new BoundInterpolatedString( 531return new BoundInterpolatedString( 592return new BoundInterpolatedString(
Generated\BoundNodes.xml.Generated.cs (1)
7836var result = new BoundInterpolatedString(this.Syntax, interpolationData, parts, constantValueOpt, type, this.HasErrors);
48 references to BoundInterpolatedString
Microsoft.CodeAnalysis.CSharp (48)
Binder\Binder.ValueChecks.cs (3)
5652case BoundInterpolatedString interpolatedString: 5661void getParts(BoundInterpolatedString interpolatedString) 5665if (part is not BoundCall { Method.Name: BoundInterpolatedString.AppendFormattedMethod } call)
Binder\Binder_InterpolatedString.cs (9)
217private BoundInterpolatedString BindUnconvertedInterpolatedStringToString(BoundUnconvertedInterpolatedString unconvertedInterpolatedString, BindingDiagnosticBag diagnostics) 250tryBindAsHandlerType(out var result)) 266BoundInterpolatedString constructWithoutData(ImmutableArray<BoundExpression> parts) 275bool tryBindAsHandlerType([NotNullWhen(true)] out BoundInterpolatedString? result) 331private BoundInterpolatedString BindUnconvertedInterpolatedExpressionToFactory( 528static BoundInterpolatedString createInterpolation(BoundUnconvertedInterpolatedString expression, int i, (ImmutableArray<ImmutableArray<BoundExpression>> AppendCalls, TypeSymbol _) arg) 574private BoundInterpolatedString BindUnconvertedInterpolatedStringToHandlerType( 928methodName = BoundInterpolatedString.AppendFormattedMethod; 954methodName = BoundInterpolatedString.AppendLiteralMethod;
Binder\RefSafetyAnalysis.cs (1)
640if (arg is BoundConversion { ConversionKind: ConversionKind.InterpolatedStringHandler, Operand: BoundInterpolatedString or BoundBinaryOperator } conversion)
BoundTree\BoundNodeExtensions.cs (5)
156Debug.Assert(typeof(TInterpolatedStringType) == typeof(BoundInterpolatedString) || binary.IsUnconvertedInterpolatedStringAddition); 242Debug.Assert(typeof(TInterpolatedStringType) == typeof(BoundInterpolatedString) || binary.IsUnconvertedInterpolatedStringAddition); 253BoundInterpolatedString { InterpolationData: { BuilderType: not null } d } => d, 254BoundBinaryOperator or BoundInterpolatedString when !throwOnMissing => default, 255BoundBinaryOperator or BoundInterpolatedString => throw ExceptionUtilities.Unreachable(),
FlowAnalysis\AbstractFlowPass.cs (4)
1202public override BoundNode VisitInterpolatedString(BoundInterpolatedString node) 2683var parts = ArrayBuilder<BoundInterpolatedString>.GetInstance(); 2688stringCallback: static (BoundInterpolatedString interpolatedString, (ArrayBuilder<BoundInterpolatedString> parts, AbstractFlowPass<TLocalState, TLocalFunctionState> @this) arg) =>
Generated\BoundNodes.xml.Generated.cs (10)
7832public BoundInterpolatedString Update(InterpolatedStringHandlerData? interpolationData, ImmutableArray<BoundExpression> parts, ConstantValue? constantValueOpt, TypeSymbol? type) 7836var result = new BoundInterpolatedString(this.Syntax, interpolationData, parts, constantValueOpt, type, this.HasErrors); 9241return VisitInterpolatedString((BoundInterpolatedString)node, arg); 9508public virtual R VisitInterpolatedString(BoundInterpolatedString node, A arg) => this.DefaultVisit(node, arg); 9744public virtual BoundNode? VisitInterpolatedString(BoundInterpolatedString node) => this.DefaultVisit(node); 10661public override BoundNode? VisitInterpolatedString(BoundInterpolatedString node) 12021public override BoundNode? VisitInterpolatedString(BoundInterpolatedString node) 14631public override BoundNode? VisitInterpolatedString(BoundInterpolatedString node) 14634BoundInterpolatedString updatedNode; 16858public override TreeDumperNode VisitInterpolatedString(BoundInterpolatedString node, object? arg) => new TreeDumperNode("interpolatedString", null, new TreeDumperNode[]
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
1098public override BoundNode VisitInterpolatedString(BoundInterpolatedString node)
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (1)
166static (BoundInterpolatedString interpolatedString, ArrayBuilder<BoundExpression> partsBuilder) =>
Lowering\LocalRewriter\LocalRewriter_Call.cs (2)
836if (argument is BoundConversion { ConversionKind: ConversionKind.InterpolatedStringHandler, Operand: BoundInterpolatedString or BoundBinaryOperator } conversion) 909if (argument is BoundConversion { ConversionKind: ConversionKind.InterpolatedStringHandler, Operand: BoundInterpolatedString or BoundBinaryOperator } conversion)
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (1)
29BoundInterpolatedString { InterpolationData: { BuilderType: not null } d, Parts: { } p } => (d, p),
Lowering\LocalRewriter\LocalRewriter_StringInterpolation.cs (3)
19var interpolatedString = (BoundInterpolatedString)conversion.Operand; 143public override BoundNode VisitInterpolatedString(BoundInterpolatedString node)
Operations\CSharpOperationFactory.cs (7)
217return CreateBoundInterpolatedStringExpressionOperation((BoundInterpolatedString)boundNode); 1539Func<BoundInterpolatedString, int, (CSharpOperationFactory, InterpolatedStringHandlerData), IOperation> createInterpolatedString 1548BoundInterpolatedString boundInterpolatedString, 2254private IInterpolatedStringOperation CreateBoundInterpolatedStringExpressionOperation(BoundInterpolatedString boundInterpolatedString, ImmutableArray<(bool IsLiteral, bool HasAlignment, bool HasFormat)>? positionInfo = null) 2444case BoundInterpolatedString interpolatedString: 2459BoundInterpolatedString.AppendLiteralMethod => OperationKind.InterpolatedStringAppendLiteral, 2460BoundInterpolatedString.AppendFormattedMethod => OperationKind.InterpolatedStringAppendFormatted,
Symbols\ConstantValueUtils.cs (1)
156public override BoundNode VisitInterpolatedString(BoundInterpolatedString node)