3 implementations of AreLocalsZeroed
Microsoft.CodeAnalysis (3)
CodeGen\MethodBody.cs (1)
122bool Cci.IMethodBody.AreLocalsZeroed => _areLocalsZeroed;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
126bool Cci.IMethodBody.AreLocalsZeroed => false;
PEWriter\RootModuleStaticConstructor.cs (1)
136public bool AreLocalsZeroed => false;
2 references to AreLocalsZeroed
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
2997var smallBodyKey = (methodBody.IL, methodBody.AreLocalsZeroed); 3017attributes: (methodBody.AreLocalsZeroed ? MethodBodyAttributes.InitLocals : 0),