3 overrides of GetExpandedValue
Microsoft.Build (3)
Evaluation\Conditionals\NumericExpressionNode.cs (1)
55
internal override string
GetExpandedValue
(ConditionEvaluator.IConditionEvaluationState state)
Evaluation\Conditionals\OperatorExpressionNode.cs (1)
39
internal override string
GetExpandedValue
(ConditionEvaluator.IConditionEvaluationState state)
Evaluation\Conditionals\StringExpressionNode.cs (1)
136
internal override string
GetExpandedValue
(ConditionEvaluator.IConditionEvaluationState state)
13 references to GetExpandedValue
Microsoft.Build (13)
Evaluation\Conditionals\AndExpressionNode.cs (2)
29
LeftChild.
GetExpandedValue
(state),
46
RightChild.
GetExpandedValue
(state),
Evaluation\Conditionals\GenericExpressionNode.cs (1)
69
GetExpandedValue
(state));
Evaluation\Conditionals\MultipleComparisonExpressionNode.cs (4)
86
string leftExpandedValue = LeftChild.
GetExpandedValue
(state);
87
string rightExpandedValue = RightChild.
GetExpandedValue
(state);
127
RightChild.
GetExpandedValue
(state));
135
LeftChild.
GetExpandedValue
(state));
Evaluation\Conditionals\NotExpressionNode.cs (2)
29
LeftChild.
GetExpandedValue
(state),
52
return "!" + LeftChild.
GetExpandedValue
(state);
Evaluation\Conditionals\NumericComparisonExpressionNode.cs (2)
55
isLeftNum ? RightChild.
GetExpandedValue
(state) : LeftChild.
GetExpandedValue
(state));
Evaluation\Conditionals\OrExpressionNode.cs (2)
29
LeftChild.
GetExpandedValue
(state),
46
RightChild.
GetExpandedValue
(state),