8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
# File 'lib/ruby2js/filter/functions.rb', line 8
def on_send(node)
target = node.children.first
args = node.children[2..-1]
if [:max, :min].include? node.children[1] and args.length == 0
return super unless node.is_method?
process s(:send, s(:attr, s(:const, nil, :Math), node.children[1]),
:apply, s(:const, nil, :Math), target)
elsif node.children[1] == :keys and node.children.length == 2
if node.is_method?
process s(:send, s(:const, nil, :Object), :keys, target)
else
super
end
elsif node.children[1] == :to_s
process s(:send, target, :toString, *args)
elsif node.children[1] == :to_a
process s(:send, target, :toArray, *args)
elsif node.children[1] == :to_i
process node.updated :send, [nil, :parseInt, target, *args]
elsif node.children[1] == :to_f
process node.updated :send, [nil, :parseFloat, target, *args]
elsif node.children[1] == :sub and args.length == 2
process node.updated nil, [target, :replace, *args]
elsif [:sub!, :gsub!].include? node.children[1]
method = :"#{node.children[1].to_s[0..-2]}"
if target.type == :lvar
process s(:lvasgn, target.children[0], s(:send,
s(:lvar, target.children[0]), method, *node.children[2..-1]))
elsif target.type == :send
if target.children[0] == nil
process s(:lvasgn, target.children[1], s(:send,
s(:lvar, target.children[1]), method, *node.children[2..-1]))
else
process s(:send, target.children[0], :"#{target.children[1]}=",
s(:send, target, method, *node.children[2..-1]))
end
else
super
end
elsif node.children[1] == :gsub and node.children.length == 4
source, method, before, after = node.children
if before.type == :regexp
before = s(:regexp, *before.children[0...-1],
s(:regopt, :g, *before.children.last))
elsif before.type == :str
before = s(:regexp, s(:str, Regexp.escape(before.children.first)),
s(:regopt, :g))
end
process node.updated nil, [source, :replace, before, after]
elsif node.children[1] == :ord and node.children.length == 2
if target.type == :str
process s(:int, target.children.last.ord)
else
process node.updated nil, [target, :charCodeAt, s(:int, 0)]
end
elsif node.children[1] == :chr and node.children.length == 2
if target.type == :int
process s(:str, target.children.last.chr)
else
process node.updated nil, [s(:const, nil, :String), :fromCharCode,
target]
end
elsif node.children[1] == :empty? and node.children.length == 2
process s(:send, s(:attr, target, :length), :==, s(:int, 0))
elsif node.children[1] == :clear and node.children.length == 2
if node.is_method?
process s(:send, target, :length=, s(:int, 0))
else
super
end
elsif node.children[1] == :replace and node.children.length == 3
process s(:begin, s(:send, target, :length=, s(:int, 0)),
s(:send, target, :push, s(:splat, node.children[2])))
elsif node.children[1] == :include? and node.children.length == 3
process s(:send, s(:send, target, :indexOf, args.first), :!=,
s(:int, -1))
elsif node.children[1] == :each
process node.updated nil, [target, :forEach, *args]
elsif node.children[0..1] == [nil, :puts]
process s(:send, s(:attr, nil, :console), :log, *args)
elsif node.children[1] == :first
if node.children.length == 2
process node.updated nil, [target, :[], s(:int, 0)]
elsif node.children.length == 3
process on_send node.updated nil, [target, :[], s(:erange,
s(:int, 0), node.children[2])]
else
super
end
elsif node.children[1] == :last
if node.children.length == 2
process on_send node.updated nil, [target, :[], s(:int, -1)]
elsif node.children.length == 3
process node.updated nil, [target, :slice,
s(:send, s(:attr, target, :length), :-, node.children[2]),
s(:attr, target, :length)]
else
super
end
elsif node.children[1] == :[]
index = args.first
i = proc do |index|
if index.type == :int and index.children.first < 0
process s(:send, s(:attr, target, :length), :-,
s(:int, -index.children.first))
else
index
end
end
if index.type == :regexp
process s(:send, s(:send, target, :match, index), :[],
args[1] || s(:int, 0))
elsif node.children.length != 3
super
elsif index.type == :int and index.children.first < 0
process node.updated nil, [target, :[], i.(index)]
elsif index.type == :erange
start, finish = index.children
process node.updated nil, [target, :slice, i.(start), i.(finish)]
elsif index.type == :irange
start, finish = index.children
start = i.(start)
if finish.type == :int
if finish.children.first == -1
finish = s(:attr, target, :length)
else
finish = i.(s(:int, finish.children.first+1))
end
else
finish = s(:send, finish, :+, s(:int, 1))
end
process node.updated nil, [target, :slice, start, finish]
else
super
end
elsif node.children[1] == :reverse! and node.is_method?
target = node.children.first
process s(:send, target, :splice, s(:int, 0),
s(:attr, target, :length), s(:splat, s(:send, target,
:"#{node.children[1].to_s[0..-2]}", *node.children[2..-1])))
elsif node.children[1] == :each_with_index
process node.updated nil, [target, :forEach, *args]
else
super
end
end
|