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