19 references to TestValues
System.Core (19)
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
1005
foreach (var test in node.
TestValues
) {
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
383
public ReadOnlyCollection<Expression> TestValues { get { return _node.
TestValues
; } }
Microsoft\Scripting\Ast\ExpressionStringBuilder.cs (1)
734
VisitExpressions('(', node.
TestValues
, ')');
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
471
return node.Update(Visit(node.
TestValues
), Visit(node.Body));
Microsoft\Scripting\Ast\SwitchCase.cs (2)
69
/// <param name="testValues">The <see cref="
TestValues
" /> property of the result.</param>
73
if (testValues ==
TestValues
&& body == Body) {
Microsoft\Scripting\Ast\SwitchExpression.cs (5)
232
for (int i = 0; i < c.
TestValues
.Count; i++) {
235
Type rightOperandType = c.
TestValues
[i].Type;
250
var firstTestValue = caseList[0].
TestValues
[0];
255
for (int i = 0; i < c.
TestValues
.Count; i++) {
256
if (!TypeUtils.AreEquivalent(firstTestValue.Type, c.
TestValues
[i].Type)) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (7)
190
foreach (Expression test in node.Cases[i].
TestValues
) {
215
return node.Cases[0].
TestValues
[0].Type;
329
!TypeUtils.AreEquivalent(type, node.Cases[0].
TestValues
[0].Type)) {
335
if (!node.Cases.All(c => c.
TestValues
.All(t => t is ConstantExpression))) {
353
foreach (ConstantExpression test in node.Cases[i].
TestValues
) {
565
foreach (Expression t in c.
TestValues
) {
587
foreach (ConstantExpression t in node.Cases[i].
TestValues
) {
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
791
ReadOnlyCollection<Expression> testValues = @case.
TestValues
;