Find all IF statements without ELSE branch

//IfStat

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