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
|
# File 'lib/parser/ruby27.rb', line 39
def try_declare_numparam(node)
name = node.children[0]
if name =~ /\A_[1-9]\z/ && !static_env.declared?(name) && context.in_dynamic_block?
location = node.loc.expression
if max_numparam_stack.has_ordinary_params?
diagnostic :error, :ordinary_param_defined, nil, [nil, location]
end
raw_max_numparam_stack = max_numparam_stack.stack.dup
raw_max_numparam_stack.pop
raw_max_numparam_stack.reverse_each do |outer_scope|
if outer_scope[:static]
break
else
outer_scope_has_numparams = outer_scope[:value] > 0
if outer_scope_has_numparams
diagnostic :error, :numparam_used_in_outer_scope, nil, [nil, location]
else
end
end
end
static_env.declare(name)
max_numparam_stack.register(name[1].to_i)
true
else
false
end
end
|