1 implementation of Text
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
8016public IOperation Text { get; }
8 references to Text
Microsoft.CodeAnalysis (2)
Operations\ControlFlowGraphBuilder.cs (2)
6831Debug.Assert(interpolatedStringText.Text is ILiteralOperation or IConversionOperation { Operand: ILiteralOperation }); 6832var rewrittenInterpolationText = VisitRequired(interpolatedStringText.Text, argument: null);
Microsoft.CodeAnalysis.Test.Utilities (6)
Compilation\OperationTreeVerifier.cs (3)
1873if (operation.Text.Kind != OperationKind.Literal) 1875Assert.Equal(OperationKind.Literal, ((IConversionOperation)operation.Text).Operand.Kind); 1877Visit(operation.Text, "Text");
Compilation\TestOperationVisitor.cs (3)
1272if (operation.Text.Kind != OperationKind.Literal) 1274Assert.Equal(OperationKind.Literal, ((IConversionOperation)operation.Text).Operand.Kind); 1276Assert.Same(operation.Text, operation.ChildOperations.Single());