current state of BracerParser:
See for example testSimpleBoolean
true > false
and
(true > false)
are expected behavior: operand, operand, operation
1, 0, >
but
(rpm > false)
is not - the variable drives it crazy
I want it to be
rpm false, >
and not
0, >, rpm
as it is
See BracerParser
See BracerParserTest
Last edit: Andrey B 2016-01-27
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
current state of BracerParser:
See for example testSimpleBoolean
true > false
and
(true > false)
are expected behavior: operand, operand, operation
1, 0, >
but
(rpm > false)
is not - the variable drives it crazy
I want it to be
rpm false, >
and not
0, >, rpm
as it is
See BracerParser
See BracerParserTest
Last edit: Andrey B 2016-01-27
Relates to https://sourceforge.net/p/rusefi/tickets/256/