Class: Crokus::Dotted
Instance Attribute Summary collapse
-
#lhs ⇒ Object
Returns the value of attribute lhs.
-
#rhs ⇒ Object
Returns the value of attribute rhs.
Instance Method Summary collapse
-
#initialize(l, r) ⇒ Dotted
constructor
A new instance of Dotted.
Methods inherited from Ast
Constructor Details
#initialize(l, r) ⇒ Dotted
Returns a new instance of Dotted.
390 391 392 |
# File 'lib/crokus/ast.rb', line 390 def initialize l,r @lhs,@rhs=l,r end |
Instance Attribute Details
#lhs ⇒ Object
Returns the value of attribute lhs.
389 390 391 |
# File 'lib/crokus/ast.rb', line 389 def lhs @lhs end |
#rhs ⇒ Object
Returns the value of attribute rhs.
389 390 391 |
# File 'lib/crokus/ast.rb', line 389 def rhs @rhs end |