3 implementations of MaxStack
Microsoft.CodeAnalysis (3)
CodeGen\MethodBody.cs (1)
130ushort Cci.IMethodBody.MaxStack => _maxStack;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
133ushort Cci.IMethodBody.MaxStack => 0;
PEWriter\MethodDefinitionBase.cs (1)
125public ushort MaxStack { get; }
2 references to MaxStack
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
3000bool isSmallBody = ilLength < 64 && methodBody.MaxStack <= 8 && localSignatureHandleOpt.IsNil && exceptionRegions.Length == 0; 3017maxStack: methodBody.MaxStack,