6 implementations of IsBeforeFieldInit
Microsoft.CodeAnalysis (4)
CodeGen\PrivateImplementationDetails.cs (1)
1048
public virtual bool
IsBeforeFieldInit
=> false;
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
37
public bool
IsBeforeFieldInit
=> OldDefinition.IsBeforeFieldInit;
Emit\NoPia\CommonEmbeddedType.cs (1)
335
bool Cci.ITypeDefinition.
IsBeforeFieldInit
PEWriter\RootModuleType.cs (1)
115
public bool
IsBeforeFieldInit
Microsoft.CodeAnalysis.CSharp (2)
Emitter\Model\NamedTypeSymbolAdapter.cs (1)
515
bool Cci.ITypeDefinition.
IsBeforeFieldInit
Symbols\Source\ExtensionGroupingInfo.cs (1)
502
bool ITypeDefinition.
IsBeforeFieldInit
=> false;
3 references to IsBeforeFieldInit
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
37
public bool IsBeforeFieldInit => OldDefinition.
IsBeforeFieldInit
;
PEWriter\MetadataWriter.cs (1)
1535
if (typeDef.
IsBeforeFieldInit
)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\SynthesizedStaticConstructorTests.cs (1)
309
return ((Microsoft.Cci.ITypeDefinition)typeSymbol.GetCciAdapter()).
IsBeforeFieldInit
;