blob: 86027fcab77ba721a00ae48916c18c67e7065b05 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
 | # frozen_string_literal: true
module Arel # :nodoc: all
  module Nodes
    class StringJoin < Arel::Nodes::Join
      def initialize(left, right = nil)
        super
      end
    end
  end
end
 |