Class: Vertigo::SigAssign

Inherits:
AstNode
  • Object
show all
Defined in:
lib/vertigo/ast_vertigo_rkgen.rb

Instance Attribute Summary collapse

Attributes inherited from AstNode

#label, #pos

Instance Method Summary collapse

Methods inherited from AstNode

#accept, #str

Constructor Details

#initialize(lhs = nil, rhs = nil) ⇒ SigAssign

Returns a new instance of SigAssign.



211
212
213
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 211

def initialize lhs=nil,rhs=nil
  @lhs,@rhs=lhs,rhs
end

Instance Attribute Details

#lhsObject

Returns the value of attribute lhs.



210
211
212
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 210

def lhs
  @lhs
end

#rhsObject

Returns the value of attribute rhs.



210
211
212
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 210

def rhs
  @rhs
end