Class: Sexp2Ruby::Node::Iasgn
Constant Summary
Constants inherited from Base
Base::ASSIGN_NODES, Base::LF, Base::LINE_LENGTH
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Sexp2Ruby::Node::Base
Instance Method Details
#to_s(exp) ⇒ Object
4 5 6 7 8 9 10 11 |
# File 'lib/sexp2ruby/node/iasgn.rb', line 4 def to_s(exp) lhs = exp.shift if exp.empty? # part of an masgn lhs.to_s else "#{lhs} = #{process exp.shift}" end end |