Sha256: c0040a5a1b015f99ba3850dc9ef7e78ee2627c07abdf6251a161c72e8d9ab315
Contents?: true
Size: 1.55 KB
Versions: 8
Compression:
Stored size: 1.55 KB
Contents
module Ruby2JS class Converter # (op-asgn # (lvasgn :a) :+ # (int 1)) # NOTE: and-asgn and or_asgn handled below handle :op_asgn do |var, op, value| var = s(:ivar, var.children.first) if var.type == :ivasgn var = s(:lvar, var.children.first) if var.type == :lvasgn var = s(:cvar, var.children.first) if var.type == :cvasgn if [:+, :-].include?(op) and value.type==:int and (value.children==[1] or value.children==[-1]) then if value.children.first == -1 op = (op == :+ ? :- : :+) end if @state == :statement parse var; put "#{ op }#{ op }" else put "#{ op }#{ op }"; parse var end else parse var; put " #{ op }= "; parse value end end # (or-asgn # (lvasgn :a) # (int 1)) # (and-asgn # (lvasgn :a) # (int 1)) handle :or_asgn, :and_asgn do |asgn, value| type = (@ast.type == :and_asgn ? :and : :or) vtype = nil vtype = :lvar if asgn.type == :lvasgn vtype = :ivar if asgn.type == :ivasgn vtype = :cvar if asgn.type == :cvasgn if vtype parse s(asgn.type, asgn.children.first, s(type, s(vtype, asgn.children.first), value)) elsif asgn.type == :send and asgn.children[1] == :[] parse s(:send, asgn.children.first, :[]=, asgn.children[2], s(type, asgn, value)) else parse s(:send, asgn.children.first, "#{asgn.children[1]}=", s(type, asgn, value)) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems