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)
41
internal override string
GetExpandedValue
(ConditionEvaluator.IConditionEvaluationState state)
Evaluation\Conditionals\StringExpressionNode.cs (1)
137
internal override string
GetExpandedValue
(ConditionEvaluator.IConditionEvaluationState state)
13 references to GetExpandedValue
Microsoft.Build (13)
Evaluation\Conditionals\AndExpressionNode.cs (2)
30
LeftChild.
GetExpandedValue
(state),
47
RightChild.
GetExpandedValue
(state),
Evaluation\Conditionals\GenericExpressionNode.cs (1)
70
GetExpandedValue
(state));
Evaluation\Conditionals\MultipleComparisonExpressionNode.cs (4)
87
string leftExpandedValue = LeftChild.
GetExpandedValue
(state);
88
string rightExpandedValue = RightChild.
GetExpandedValue
(state);
128
RightChild.
GetExpandedValue
(state));
136
LeftChild.
GetExpandedValue
(state));
Evaluation\Conditionals\NotExpressionNode.cs (2)
30
LeftChild.
GetExpandedValue
(state),
53
return "!" + LeftChild.
GetExpandedValue
(state);
Evaluation\Conditionals\NumericComparisonExpressionNode.cs (2)
56
isLeftNum ? RightChild.
GetExpandedValue
(state) : LeftChild.
GetExpandedValue
(state));
Evaluation\Conditionals\OrExpressionNode.cs (2)
30
LeftChild.
GetExpandedValue
(state),
47
RightChild.
GetExpandedValue
(state),