4 overrides of IsStaticConstructor
ILCompiler.TypeSystem (4)
parent\parent\Common\TypeSystem\Common\InstantiatedMethod.cs (1)
153
public override bool
IsStaticConstructor
parent\parent\Common\TypeSystem\Common\MethodDelegator.cs (1)
31
public override bool
IsStaticConstructor
=> _wrappedMethod.IsStaticConstructor;
parent\parent\Common\TypeSystem\Common\MethodForInstantiatedType.cs (1)
150
public override bool
IsStaticConstructor
parent\parent\Common\TypeSystem\Ecma\EcmaMethod.cs (1)
370
public override bool
IsStaticConstructor
21 references to IsStaticConstructor
ILCompiler.Compiler (10)
Compiler\Dataflow\DiagnosticUtilities.cs (2)
100
if (TryGetRequiresAttribute(method, requiresAttribute, out attribute) && !method.
IsStaticConstructor
)
124
if (method.
IsStaticConstructor
)
Compiler\DependencyAnalysis\ModuleInitializerListNode.cs (1)
44
&& mdType.IsModuleType && method.
IsStaticConstructor
)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
521
Debug.Assert(method.
IsStaticConstructor
);
Compiler\MetadataManager.cs (2)
418
if (method.
IsStaticConstructor
)
511
if (!method.IsCanonicalMethod(CanonicalFormKind.Any) && method.
IsStaticConstructor
)
Compiler\UsageBasedMetadataManager.cs (1)
654
if (method.
IsStaticConstructor
)
IL\ILImporter.Scanner.cs (1)
1444
&& ((field.IsStatic && _methodIL.OwningMethod.
IsStaticConstructor
)
parent\parent\Common\Compiler\Dataflow\DynamicallyAccessedMembersBinder.cs (2)
150
if (!method.IsConstructor && !method.
IsStaticConstructor
)
188
if (method.IsConstructor || method.
IsStaticConstructor
)
ILCompiler.ReadyToRun (6)
Compiler\ReadyToRunVisibilityRootProvider.cs (1)
62
if (!method.
IsStaticConstructor
parent\parent\Common\Compiler\Dataflow\DynamicallyAccessedMembersBinder.cs (2)
150
if (!method.IsConstructor && !method.
IsStaticConstructor
)
188
if (method.IsConstructor || method.
IsStaticConstructor
)
parent\parent\Common\JitInterface\CorInfoImpl.cs (3)
1173
if (method.IsConstructor || method.
IsStaticConstructor
)
2942
if (md.
IsStaticConstructor
)
3006
if (MethodBeingCompiled.OwningType == typeToInit && MethodBeingCompiled.
IsStaticConstructor
)
ILCompiler.RyuJit (3)
parent\parent\Common\JitInterface\CorInfoImpl.cs (3)
1173
if (method.IsConstructor || method.
IsStaticConstructor
)
2942
if (md.
IsStaticConstructor
)
3006
if (MethodBeingCompiled.OwningType == typeToInit && MethodBeingCompiled.
IsStaticConstructor
)
ILCompiler.TypeSystem (2)
parent\parent\Common\TypeSystem\Common\MethodDelegator.cs (1)
31
public override bool IsStaticConstructor => _wrappedMethod.
IsStaticConstructor
;
parent\parent\Common\TypeSystem\Common\MethodForInstantiatedType.cs (1)
154
return _typicalMethodDef.
IsStaticConstructor
;