public increaseOffsetBy()

in lib/common/utils/statementBuilder.util.ts [60:64]


  public increaseOffsetBy(amount: number): StatementBuilder {
    if (this._offset === undefined) this._offset = 0;
    this._offset += amount;
    return this;
  }