// BinaryExpr [ getOperationCode() = KTC_OPCODE_ADD ]
1 void foo(booleanint a, int b) { 2 int c = a + b; // match this one 3 c = ++b; // do not match 4 c = a / b; // do not match 5 }