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