4 implementations of MaxStack
Microsoft.CodeAnalysis (4)
CodeGen\MethodBody.cs (1)
132ushort Cci.IMethodBody.MaxStack => _maxStack;
Emit\EditAndContinue\DeletedMethodBody.cs (1)
34public ushort MaxStack => 8;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
134ushort Cci.IMethodBody.MaxStack => 0;
PEWriter\MethodDefinitionBase.cs (1)
127public ushort MaxStack { get; }
2 references to MaxStack
Microsoft.CodeAnalysis (2)
PEWriter\MetadataWriter.cs (2)
3012bool isSmallBody = ilLength < 64 && methodBody.MaxStack <= 8 && localSignatureHandleOpt.IsNil && exceptionRegions.Length == 0; 3029maxStack: methodBody.MaxStack,