1 implementation of Content
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10101
public IOperation
Content
{ get; }
6 references to Content
Microsoft.CodeAnalysis (3)
Generated\Operations.Generated.cs (1)
3647
/// <see cref="
Content
" />. False otherwise.
Operations\ControlFlowGraphBuilder.cs (2)
6894
if (creation.
Content
is IInterpolatedStringOperation interpolatedString)
6902
pushLeftNodes((IInterpolatedStringAdditionOperation)creation.
Content
, stack);
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1895
Visit(operation.
Content
, "Content");
Compilation\TestOperationVisitor.cs (2)
1321
IEnumerable<IOperation> children = new[] { operation.HandlerCreation, operation.
Content
};
1324
Assert.True(operation.
Content
is IInterpolatedStringAdditionOperation or IInterpolatedStringOperation);