//IfStat
class Foo { void mymethod(boolean b) { if (b) { // match this one ... } if (b) { // do not match this one ... } else { ... } } }