1 implementation of Parts
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
6213public ImmutableArray<IInterpolatedStringContentOperation> Parts { get; }
9 references to Parts
Microsoft.CodeAnalysis (7)
Generated\Operations.Generated.cs (2)
3383/// True if the AppendLiteral or AppendFormatted calls in nested <see cref="IInterpolatedStringOperation.Parts" /> return <see langword="bool" />. When that is true, each part 3387/// when this is true and <see cref="HandlerCreationHasSuccessParameter" /> is true, then the first part in nested <see cref="IInterpolatedStringOperation.Parts" /> is conditionally
Operations\ControlFlowGraphBuilder.cs (5)
6697foreach (var part in interpolatedString.Parts) 6793foreach (IInterpolatedStringContentOperation element in operation.Parts) 6807var partsBuilder = ArrayBuilder<IInterpolatedStringContentOperation>.GetInstance(operation.Parts.Length); 6808for (int i = operation.Parts.Length - 1; i >= 0; i--) 6810IInterpolatedStringContentOperation element = operation.Parts[i];
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
1847VisitArray(operation.Parts, "Parts", logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
1266AssertEx.Equal(operation.Parts, operation.ChildOperations);