Class: SQLParser::Statement::JoinedTable
- Defined in:
- lib/rossoc/statement.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
Returns the value of attribute left.
-
#right ⇒ Object
readonly
Returns the value of attribute right.
Instance Method Summary collapse
-
#initialize(left, right) ⇒ JoinedTable
constructor
A new instance of JoinedTable.
Methods inherited from Node
Constructor Details
#initialize(left, right) ⇒ JoinedTable
300 301 302 303 |
# File 'lib/rossoc/statement.rb', line 300 def initialize(left, right) @left = left @right = right end |
Instance Attribute Details
#left ⇒ Object (readonly)
Returns the value of attribute left.
305 306 307 |
# File 'lib/rossoc/statement.rb', line 305 def left @left end |
#right ⇒ Object (readonly)
Returns the value of attribute right.
305 306 307 |
# File 'lib/rossoc/statement.rb', line 305 def right @right end |