1 implementation of Target
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
6898
public 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)
7130
return new IncrementOrDecrementOperation(operation.IsPostfix, operation.IsLifted, operation.IsChecked, VisitRequired(operation.
Target
),
Microsoft.CodeAnalysis.Test.Utilities (7)
Compilation\OperationTreeVerifier.cs (1)
1699
Visit(operation.
Target
, "Target");
Compilation\TestOperationVisitor.cs (1)
1188
Assert.Same(operation.
Target
, operation.ChildOperations.Single());
Diagnostics\CouldHaveMoreSpecificTypeAnalyzer.cs (1)
72
AssignTo(increment.
Target
, localsSourceTypes, fieldsSourceTypes, value);
Diagnostics\FieldCouldBeReadOnlyAnalyzer.cs (1)
60
AssignTo(increment.
Target
, inConstructor, staticConstructorType, assignedToFields, mightBecomeReadOnlyFields);
Diagnostics\LocalCouldBeConstAnalyzer.cs (1)
54
AssignTo(increment.
Target
, assignedToLocals, mightBecomeConstLocals);
Diagnostics\OperationTestAnalyzer.cs (2)
276
if (advanceAssignment.
Target
.Kind == OperationKind.LocalReference &&
277
((ILocalReferenceOperation)advanceAssignment.
Target
).Local == testVariable)