5 references to Pinned
Microsoft.CodeAnalysis (3)
CodeGen\LocalDefinition.cs (1)
125=> (_constraints & LocalSlotConstraints.Pinned) != 0;
MetadataReader\MetadataDecoder.cs (2)
102public bool IsPinned => (Constraints & LocalSlotConstraints.Pinned) != 0; 956constraints |= LocalSlotConstraints.Pinned;
Microsoft.CodeAnalysis.CSharp (2)
CodeGen\EmitStatement.cs (2)
1799constraints = LocalSlotConstraints.ByRef | LocalSlotConstraints.Pinned; 1811constraints = (local.IsPinned ? LocalSlotConstraints.Pinned : LocalSlotConstraints.None) |