1 implementation of Target
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
6898public IOperation Target { get; }
9 references to Target
Microsoft.CodeAnalysis (2)
Generated\Operations.Generated.cs (1)
1992/// Note that this operation is different from an <see cref="IUnaryOperation" /> as it mutates the <see cref="Target" />,
Operations\ControlFlowGraphBuilder.cs (1)
7130return new IncrementOrDecrementOperation(operation.IsPostfix, operation.IsLifted, operation.IsChecked, VisitRequired(operation.Target),
Microsoft.CodeAnalysis.Test.Utilities (7)
Compilation\OperationTreeVerifier.cs (1)
1699Visit(operation.Target, "Target");
Compilation\TestOperationVisitor.cs (1)
1188Assert.Same(operation.Target, operation.ChildOperations.Single());
Diagnostics\CouldHaveMoreSpecificTypeAnalyzer.cs (1)
72AssignTo(increment.Target, localsSourceTypes, fieldsSourceTypes, value);
Diagnostics\FieldCouldBeReadOnlyAnalyzer.cs (1)
60AssignTo(increment.Target, inConstructor, staticConstructorType, assignedToFields, mightBecomeReadOnlyFields);
Diagnostics\LocalCouldBeConstAnalyzer.cs (1)
54AssignTo(increment.Target, assignedToLocals, mightBecomeConstLocals);
Diagnostics\OperationTestAnalyzer.cs (2)
276if (advanceAssignment.Target.Kind == OperationKind.LocalReference && 277((ILocalReferenceOperation)advanceAssignment.Target).Local == testVariable)