aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/not.rb
blob: d463ae9d08605d49697b45687c29dc640e1657d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  module Nodes
    class Not < Arel::Nodes::Node
      attr_reader :expr

      def initialize expr
        @expr = expr
      end
    end
  end
end