2 writes to topNode
System.Data (2)
fx\src\data\System\Data\Filter\ExpressionParser.cs (2)
591
ExpressionNode node = NodeStack[--
topNode
];
615
NodeStack[
topNode
++] = node;
8 references to topNode
System.Data (8)
fx\src\data\System\Data\Filter\ExpressionParser.cs (8)
177
if (
topNode
== 0) {
395
Debug.Assert(
topNode
> 0 && NodePeek().GetType() == typeof(FunctionNode), "The function node should be created on '('");
522
Debug.Assert(
topNode
== 1 ||
topNode
== 0, "Invalid Node Stack");
590
Debug.Assert(
topNode
> 0, "NodePop(): Corrupted node stack");
600
if (
topNode
<= 0)
603
return NodeStack[
topNode
-1];
612
if (
topNode
>= MaxPredicates-2) {