Skip to content

Commit 57cdd6a

Browse files
committedJun 17, 2014
Cleanup builder
1 parent 3bda367 commit 57cdd6a

File tree

2 files changed

+0
-65
lines changed

2 files changed

+0
-65
lines changed
 

Diff for: ‎Rakefile

-19
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,6 @@ task :sizes do
1919
puts "\ndevelopment: #{code.size}, minified: #{min.size}"
2020
end
2121

22-
module Opal
23-
module Nodes
24-
class OpAsgn1Node
25-
def compile_and
26-
with_temp do |a| # args
27-
with_temp do |r| # recv
28-
aref = s(:call, s(:js_tmp, r), :[], s(:arglist, s(:js_tmp, a)))
29-
aset = s(:call, s(:js_tmp, r), :[]=, s(:arglist, s(:js_tmp, a), rhs))
30-
andop = s(:and, aref, aset)
31-
32-
push "(#{a} = ", expr(first_arg), ", #{r} = ", expr(lhs)
33-
push ", ", expr(andop), ")"
34-
end
35-
end
36-
end
37-
end
38-
end
39-
end
40-
4122
def build_rspec
4223
Opal::Processor.dynamic_require_severity = :warning
4324

Diff for: ‎app/rspec-builder.rb

-46
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.