2 references to IsInitOnlyPopulatedBit
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Metadata\PE\PEMethodSymbol.cs (2)
151
public bool IsInitOnlyPopulated => (_bits &
IsInitOnlyPopulatedBit
) != 0;
257
long bitsToSet = (isInitOnly ? IsInitOnlyBit : 0) |
IsInitOnlyPopulatedBit
;