1 implementation of Content
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10101public 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)
6894if (creation.Content is IInterpolatedStringOperation interpolatedString) 6902pushLeftNodes((IInterpolatedStringAdditionOperation)creation.Content, stack);
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\OperationTreeVerifier.cs (1)
1895Visit(operation.Content, "Content");
Compilation\TestOperationVisitor.cs (2)
1321IEnumerable<IOperation> children = new[] { operation.HandlerCreation, operation.Content }; 1324Assert.True(operation.Content is IInterpolatedStringAdditionOperation or IInterpolatedStringOperation);