Commit d8c80783 authored by romanb's avatar romanb

[2.0] Small optimization.

parent 32069cc2
......@@ -1719,9 +1719,8 @@ class Parser
$condPrimary->simpleConditionalExpression = $this->SimpleConditionalExpression();
} else {
$this->match('(');
$conditionalExpression = $this->ConditionalExpression();
$condPrimary->conditionalExpression = $this->ConditionalExpression();
$this->match(')');
$condPrimary->conditionalExpression = $conditionalExpression;
}
} else {
$condPrimary->simpleConditionalExpression = $this->SimpleConditionalExpression();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment