Skip to content

Commit a62a443

Browse files
committedJan 6, 2014
Fix code generation for op_asgn_1 calls (foo[bar] += 10)
1 parent bafc36a commit a62a443

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@
9292
* Support any Tilt template for `index_path` in `Opal::Server`. All index
9393
files are now run through `Tilt` (now supports haml etc).
9494

95+
* Fix code generation of `op_asgn_1` calls (foo[val] += 10).
96+
9597
## 0.5.5 2013-11-25
9698

9799
* Fix regression: add `%i[foo bar]` style words back to lexer

‎lib/opal/nodes/call_special.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def compile_operator
7777
with_temp do |a| # args
7878
with_temp do |r| # recv
7979
cur = s(:call, s(:js_tmp, r), :[], s(:arglist, s(:js_tmp, a)))
80-
rhs = s(:call, cur, :+, s(:arglist, self.rhs))
80+
rhs = s(:call, cur, op.to_sym, s(:arglist, self.rhs))
8181
call = s(:call, s(:js_tmp, r), :[]=, s(:arglist, s(:js_tmp, a), rhs))
8282

8383
push "(#{a} = ", expr(first_arg), ", #{r} = ", expr(lhs)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
require 'spec_helper'
2+
3+
describe "Operator calls" do
4+
before { @obj = {:value => 10} }
5+
6+
it "compiles as a normal send method call" do
7+
@obj[:value] += 15
8+
@obj[:value].should == 25
9+
10+
@obj[:value] -= 23
11+
@obj[:value].should == 2
12+
end
13+
end

0 commit comments

Comments
 (0)
Please sign in to comment.