Class: Opal::Rewriters::ReturnableLogic
- Inherits:
-
Base
- Object
- Parser::AST::Processor
- Base
- Opal::Rewriters::ReturnableLogic
show all
- Defined in:
- opal/lib/opal/rewriters/returnable_logic.rb
Constant Summary
Constants inherited
from Base
Base::DUMMY_LOCATION
Instance Attribute Summary
Attributes inherited from Base
#current_node
Instance Method Summary
collapse
Methods inherited from Base
#append_to_body, #begin_with_stmts, #error, #prepend_to_body, #process, #s, s, #stmts_of
Instance Method Details
#free_tmp ⇒ Object
14
15
16
|
# File 'opal/lib/opal/rewriters/returnable_logic.rb', line 14
def free_tmp
@counter -= 1
end
|
#next_tmp ⇒ Object
8
9
10
11
12
|
# File 'opal/lib/opal/rewriters/returnable_logic.rb', line 8
def next_tmp
@counter ||= 0
@counter += 1
"$ret_or_#{@counter}"
end
|
#on_and(node) ⇒ Object
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# File 'opal/lib/opal/rewriters/returnable_logic.rb', line 58
def on_and(node)
lhs, rhs = *node.children
if node.meta[:if_test]
lhs.meta[:if_test] = rhs.meta[:if_test] = true
out = process(node.updated(:if, [lhs, rhs, s(:false)]))
else
lhs_tmp = next_tmp
out = process(node.updated(:if, [s(:lvasgn, lhs_tmp, lhs), rhs, s(:js_tmp, lhs_tmp)]))
free_tmp
end
out
end
|
#on_begin(node) ⇒ Object
Parser sometimes generates parentheses as a begin node. If it's a single node begin value, then
let's forward the if_test metadata.
74
75
76
77
78
79
80
|
# File 'opal/lib/opal/rewriters/returnable_logic.rb', line 74
def on_begin(node)
if node.meta[:if_test] && node.children.count == 1
node.children.first.meta[:if_test] = true
end
node.meta.delete(:if_test)
super
end
|
#on_case(node) ⇒ Object
30
31
32
33
34
35
36
37
38
|
# File 'opal/lib/opal/rewriters/returnable_logic.rb', line 30
def on_case(node)
lhs, *whens, els = *node.children
els ||= s(:nil)
lhs_tmp = next_tmp if lhs
out = build_if_from_when(node, lhs, lhs_tmp, whens, els)
free_tmp if lhs
out
end
|
#on_if(node) ⇒ Object
22
23
24
25
26
27
28
|
# File 'opal/lib/opal/rewriters/returnable_logic.rb', line 22
def on_if(node)
test, = *node.children
test.meta[:if_test] = true if test
super
end
|
#on_or(node) ⇒ Object
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# File 'opal/lib/opal/rewriters/returnable_logic.rb', line 41
def on_or(node)
lhs, rhs = *node.children
if node.meta[:if_test]
lhs.meta[:if_test] = rhs.meta[:if_test] = true
out = process(node.updated(:if, [lhs, s(:true), rhs]))
else
lhs_tmp = next_tmp
out = process(node.updated(:if, [s(:lvasgn, lhs_tmp, lhs), s(:js_tmp, lhs_tmp), rhs]))
free_tmp
end
out
end
|
#reset_tmp_counter! ⇒ Object
18
19
20
|
# File 'opal/lib/opal/rewriters/returnable_logic.rb', line 18
def reset_tmp_counter!
@counter = nil
end
|