(expression, printErrors=True)
| 141 | |
| 142 | |
| 143 | def evaluateBooleanExpression(expression, printErrors=True): |
| 144 | return ( |
| 145 | int(evaluateIntegerExpression("(BOOL)(" + expression + ")", printErrors)) != 0 |
| 146 | ) |
| 147 | |
| 148 | |
| 149 | def evaluateExpression(expression, printErrors=True): |
nothing calls this directly
no test coverage detected