Ticket #6 (new defect)

Opened 3 years ago

Last modified 3 years ago

Operator precedence is unimplemented

Reported by: steve Assigned to: somebody
Priority: low Milestone:
Component: airspeed Version:
Severity: minor Keywords: operators
Cc:

Description (Last modified by steve)

Airspeed considers the following legal Velocity code a syntax error:

#if( $a || $b == 3 )

It is possible to use the following workaround in Airspeed:

#if( $a || ($b == 3) )

Ideally we should support full operator precedence, but I do not consider this urgent as the workaround is also valid in Velocity.

Change History

22/09/05 10:20:32 changed by steve

  • description changed.