7 references to _tests
System.Linq.Expressions (7)
System\Dynamic\BindingRestrictions.cs (7)
164
Expression result =
_tests
.Pop().Node;
165
while (
_tests
.Count > 0)
167
result = Expression.AndAlso(
_tests
.Pop().Node, result);
174
while (
_tests
.Count > 0 &&
_tests
.Peek().Depth == depth)
176
node = Expression.AndAlso(
_tests
.Pop().Node, node);
179
_tests
.Push(new AndNode { Node = node, Depth = depth });