# File lib/randexp/parser.rb, line 54
    def self.quantify_rhs(sexp, multiplicity)
      case sexp.first
      when :union
        rhs = sexp.pop
        sexp << quantify(rhs, multiplicity)
      else
        quantify(sexp, multiplicity)
      end
    end