1 implementation of Parts
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
6213
public 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)
6697
foreach (var part in interpolatedString.
Parts
)
6793
foreach (IInterpolatedStringContentOperation element in operation.
Parts
)
6807
var partsBuilder = ArrayBuilder<IInterpolatedStringContentOperation>.GetInstance(operation.
Parts
.Length);
6808
for (int i = operation.
Parts
.Length - 1; i >= 0; i--)
6810
IInterpolatedStringContentOperation element = operation.
Parts
[i];
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
1847
VisitArray(operation.
Parts
, "Parts", logElementCount: true);
Compilation\TestOperationVisitor.cs (1)
1266
AssertEx.Equal(operation.
Parts
, operation.ChildOperations);