39404142434445
Object result = mChild.evaluate(variables); if (result instanceof Boolean) { return !(Boolean)result; } throw new UndefinedOperatorException("!", result); }
51525354555657
if (right instanceof String) { return ((String)left).compareTo((String)right) < 0; } } throw new UndefinedOperatorException("<", left, right); }