@Test
public void testDumpBindings2() throws Exception {
String input = "( $a : a > $b : b[10].prop || 10 != 20 ) && $x : someMethod(10) == 20";
String expected = "( a > b[10].prop || 10 != 20 ) && someMethod(10) == 20";
ConstraintConnectiveDescr descr = parse( input );
MVELDumperContext ctx = new MVELDumperContext();
String result = dumper.dump( descr,
ctx );
assertEquals( expected,