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