4 implementations of AreLocalsZeroed
Microsoft.CodeAnalysis (4)
CodeGen\MethodBody.cs (1)
124bool Cci.IMethodBody.AreLocalsZeroed => _areLocalsZeroed;
Emit\EditAndContinue\DeletedMethodBody.cs (1)
24public bool AreLocalsZeroed => false;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
127bool Cci.IMethodBody.AreLocalsZeroed => false;
PEWriter\MethodDefinitionBase.cs (1)
135public bool AreLocalsZeroed => false;
2 references to AreLocalsZeroed
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
3013var smallBodyKey = (methodBody.IL, methodBody.AreLocalsZeroed); 3033attributes: (methodBody.AreLocalsZeroed ? MethodBodyAttributes.InitLocals : 0),