7 references to ByRef
Microsoft.CodeAnalysis (3)
CodeGen\LocalDefinition.cs (1)
128
=> (_constraints & LocalSlotConstraints.
ByRef
) != 0;
MetadataReader\MetadataDecoder.cs (2)
100
public bool IsByRef => (Constraints & LocalSlotConstraints.
ByRef
) != 0;
962
constraints |= LocalSlotConstraints.
ByRef
;
Microsoft.CodeAnalysis.CSharp (4)
CodeGen\CodeGenerator.cs (1)
171
: LocalSlotConstraints.
ByRef
;
CodeGen\EmitExpression.cs (1)
3080
assignmentOperator.IsRef ? LocalSlotConstraints.
ByRef
: LocalSlotConstraints.None);
CodeGen\EmitStatement.cs (2)
1799
constraints = LocalSlotConstraints.
ByRef
| LocalSlotConstraints.Pinned;
1812
(local.RefKind != RefKind.None ? LocalSlotConstraints.
ByRef
: LocalSlotConstraints.None);