1 write to _stack
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Components\ScopeStack.cs (1)
60
_stack
??= new();
5 references to _stack
Microsoft.CodeAnalysis.Razor.Compiler (5)
Language\Components\ScopeStack.cs (5)
24
public int Depth =>
_stack
?.Count ?? 0;
61
_stack
.Push(_current);
70
Debug.Assert(
_stack
is not null &&
_stack
.Count > 0);
73
_current =
_stack
.Pop();