Class: Arel::Nodes::Node
- Inherits:
-
Object
- Object
- Arel::Nodes::Node
- Defined in:
- lib/arel/nodes/node.rb
Overview
Abstract base class for all AST nodes
Direct Known Subclasses
Binary, Function, InsertStatement, Join, Lock, SelectCore, SelectStatement, Unary, UpdateStatement
Instance Method Summary collapse
-
#and(right) ⇒ Object
Factory method to create an Nodes::And node.
-
#each(&block) ⇒ Object
Iterate through AST, nodes will be yielded depth-first.
-
#not ⇒ Object
Factory method to create a Nodes::Not node that has the recipient of the caller as a child.
-
#or(right) ⇒ Object
Factory method to create a Nodes::Grouping node that has an Nodes::Or node as a child.
-
#to_sql(engine = Table.engine) ⇒ Object
FIXME: this method should go away.
Instance Method Details
#and(right) ⇒ Object
Factory method to create an Nodes::And node.
22 23 24 |
# File 'lib/arel/nodes/node.rb', line 22 def and right Nodes::And.new self, right end |
#each(&block) ⇒ Object
Iterate through AST, nodes will be yielded depth-first
37 38 39 40 41 |
# File 'lib/arel/nodes/node.rb', line 37 def each &block return enum_for(:each) unless block_given? Visitors::DepthFirst.new(block).accept self end |
#not ⇒ Object
Factory method to create a Nodes::Not node that has the recipient of the caller as a child.
9 10 11 |
# File 'lib/arel/nodes/node.rb', line 9 def not Nodes::Not.new Nodes::Grouping.new self end |
#or(right) ⇒ Object
Factory method to create a Nodes::Grouping node that has an Nodes::Or node as a child.
16 17 18 |
# File 'lib/arel/nodes/node.rb', line 16 def or right Nodes::Grouping.new Nodes::Or.new(self, right) end |
#to_sql(engine = Table.engine) ⇒ Object
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`? :’(
31 32 33 34 |
# File 'lib/arel/nodes/node.rb', line 31 def to_sql engine = Table.engine viz = Visitors.for engine viz.accept self end |