2 references to IsExtensionMethodIsPopulatedBit
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Metadata\PE\PEMethodSymbol.cs (2)
130
public bool IsExtensionMethodIsPopulated => (_bits &
IsExtensionMethodIsPopulatedBit
) != 0;
169
int bitsToSet = (isExtensionMethod ? IsExtensionMethodBit : 0) |
IsExtensionMethodIsPopulatedBit
;