4 implementations of AreLocalsZeroed
Microsoft.CodeAnalysis (4)
CodeGen\MethodBody.cs (1)
119
bool Cci.IMethodBody.
AreLocalsZeroed
=> _areLocalsZeroed;
Emit\EditAndContinue\DeletedMethodBody.cs (1)
31
public bool
AreLocalsZeroed
=> false;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
123
bool Cci.IMethodBody.
AreLocalsZeroed
=> false;
PEWriter\RootModuleStaticConstructor.cs (1)
134
public bool
AreLocalsZeroed
=> false;
3 references to AreLocalsZeroed
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
2951
var smallBodyKey = (methodBody.IL, methodBody.
AreLocalsZeroed
);
2971
attributes: (methodBody.
AreLocalsZeroed
? MethodBodyAttributes.InitLocals : 0),
Microsoft.CodeAnalysis.Test.Utilities (1)
CompilationVerifier.cs (1)
635
return _visualizeRealIL(_lazyModuleSymbol, methodData, markers, _testData.Module.GetMethodBody(methodData.Method).
AreLocalsZeroed
);