Class: Crokus::Dotted

Inherits:
Expr show all
Defined in:
lib/crokus/ast.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ast

#accept, #str

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

#lhsObject

Returns the value of attribute lhs.



389
390
391
# File 'lib/crokus/ast.rb', line 389

def lhs
  @lhs
end

#rhsObject

Returns the value of attribute rhs.



389
390
391
# File 'lib/crokus/ast.rb', line 389

def rhs
  @rhs
end