public class OrIf extends IfBinary {
  public OrIf (int id) {
  }
  public Object sem () throws SemanticException {
    return super.sem("||");
  }
  public Object run () {
    if (((Boolean)a.run()).booleanValue()) return Boolean.TRUE;
    return b.run();
  }
}

