module RedParse::ListInNode::KeywordOpNode

Public Instance Methods

unparse(o=default_unparse_options) click to toggle source
# File lib/redparse/node.rb, line 2224
def unparse o=default_unparse_options
  [left.unparse(o),' ',op,' ',right.unparse(o)].join
end