2 writes to _stack
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\Intermediate\IntermediateNodeWalker.Stack.cs (2)
57_stack = new IntermediateNode[InitialStackSize]; 72_stack = newStack;
12 references to _stack
Microsoft.CodeAnalysis.Razor.Compiler (12)
Language\Intermediate\IntermediateNodeWalker.Stack.cs (12)
25[MemberNotNullWhen(false, nameof(_stack))] 27=> _stack is null || _stackPointer == _stack.Length; 32: _stack.AsSpan()[_stackPointer..]; 36if (_stack is null || _stackPointer == 0) 41_stack[--_stackPointer] = node; 48_stack[_stackPointer++] = null!; 51[MemberNotNull(nameof(_stack))] 55if (_stack == null) 58_stackPointer = _stack.Length; 66var length = _stack.Length; 69_stack.CopyTo(newStack, length);