4 implementations of MaxStack
Microsoft.CodeAnalysis (4)
CodeGen\MethodBody.cs (1)
127
ushort Cci.IMethodBody.
MaxStack
=> _maxStack;
Emit\EditAndContinue\DeletedMethodBody.cs (1)
41
public ushort
MaxStack
=> 8;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
130
ushort Cci.IMethodBody.
MaxStack
=> 0;
PEWriter\RootModuleStaticConstructor.cs (1)
126
public ushort
MaxStack
=> 0;
2 references to MaxStack
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
2950
bool isSmallBody = ilLength < 64 && methodBody.
MaxStack
<= 8 && localSignatureHandleOpt.IsNil && exceptionRegions.Length == 0;
2967
maxStack: methodBody.
MaxStack
,