Sha256: 6249c16004ccf4d0c0297358ce11c4ab9f7833a0ae18e4446d2bbafa07f4e2c4

Contents?: true

Size: 1.2 KB

Versions: 47

Compression:

Stored size: 1.2 KB

Contents

module Arel
  module Nodes
    ###
    # Abstract base class for all AST nodes
    class Node
      include Arel::FactoryMethods
      include Enumerable

      ###
      # Factory method to create a Nodes::Not node that has the recipient of
      # the caller as a child.
      def not
        Nodes::Not.new self
      end

      ###
      # Factory method to create a Nodes::Grouping node that has an Nodes::Or
      # node as a child.
      def or right
        Nodes::Grouping.new Nodes::Or.new(self, right)
      end

      ###
      # Factory method to create an Nodes::And node.
      def and right
        Nodes::And.new [self, right]
      end

      # FIXME: this method should go away.  I don't like people calling
      # to_sql on non-head nodes.  This forces us to walk the AST until we
      # can find a node that has a "relation" member.
      #
      # Maybe we should just use `Table.engine`?  :'(
      def to_sql engine = Table.engine
        engine.connection.visitor.accept self
      end

      # Iterate through AST, nodes will be yielded depth-first
      def each &block
        return enum_for(:each) unless block_given?

        Visitors::DepthFirst.new(block).accept self
      end
    end
  end
end

Version data entries

47 entries across 47 versions & 3 rubygems

Version Path
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.7.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.7.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.7.0 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.6.7 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.6.6 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.6.5 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.6.4 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.6.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.6.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.6.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.6.0 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
challah-0.6.1 vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/node.rb
dirty_history-0.5.4 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
challah-0.6.0 vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/node.rb
challah-0.5.4 vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/node.rb
challah-0.5.3 vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/node.rb
challah-0.5.2 vendor/bundle/gems/arel-3.0.0/lib/arel/nodes/node.rb
dirty_history-0.5.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb
dirty_history-0.5.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb