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