1 write to _stack
System.Private.Xml (1)
System\Xml\Schema\ContentValidator.cs (1)
1081
_stack
= new Stack<SyntaxTreeNode?>();
15 references to _stack
System.Private.Xml (15)
System\Xml\Schema\ContentValidator.cs (15)
1086
_stack
!.Push(null);
1091
SyntaxTreeNode? node =
_stack
!.Pop();
1097
if (
_stack
.Count == 0)
1105
InteriorNode? inNode = (InteriorNode?)
_stack
.Pop();
1116
_stack
.Push(node);
1142
if (
_stack
!.Count > 0)
1144
InteriorNode? inNode = (InteriorNode?)
_stack
.Pop();
1151
_stack
.Push(node);
1157
SyntaxTreeNode? node =
_stack
!.Pop();
1160
_stack
.Push(choice);
1165
SyntaxTreeNode? node =
_stack
!.Pop();
1168
_stack
.Push(sequence);
1205
if (
_stack
!.Count > 0)
1207
SyntaxTreeNode? topNode =
_stack
!.Pop();
1222
_stack
.Push(topNode);