or method

Or or(
  1. Expression exp
)
override

Creates a 'logical or' expression of this expression and the other

Implementation

Or or(Expression exp) {
  Or ret = new Or();

  if (this.length != 0) {
    ret = ret.or(this);
  }

  return ret.or(exp);
}