1 implementation of Text
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
8389public IOperation Text { get; }
8 references to Text
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
7069Debug.Assert(interpolatedStringText.Text is ILiteralOperation or IConversionOperation { Operand: ILiteralOperation }); 7070var rewrittenInterpolationText = VisitRequired(interpolatedStringText.Text, argument: null);
Microsoft.CodeAnalysis.Test.Utilities (6)
Compilation\OperationTreeVerifier.cs (3)
1911if (operation.Text.Kind != OperationKind.Literal) 1913Assert.Equal(OperationKind.Literal, ((IConversionOperation)operation.Text).Operand.Kind); 1915Visit(operation.Text, "Text");
Compilation\TestOperationVisitor.cs (3)
1290if (operation.Text.Kind != OperationKind.Literal) 1292Assert.Equal(OperationKind.Literal, ((IConversionOperation)operation.Text).Operand.Kind); 1294Assert.Same(operation.Text, operation.ChildOperations.Single());