mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
parse.y: fix a typo
* parse.y (f_kw): fix typo. needs the argument value, not the label twice. [ruby-core:83174] [Bug #13987] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6a34a8c403
commit
838a91633c
2 changed files with 15 additions and 1 deletions
2
parse.y
2
parse.y
|
@ -4408,7 +4408,7 @@ f_kw : f_label arg_value
|
||||||
/*%%%*/
|
/*%%%*/
|
||||||
$$ = new_kw_arg($$);
|
$$ = new_kw_arg($$);
|
||||||
/*%
|
/*%
|
||||||
$$ = rb_assoc_new(get_value($$), get_value($1));
|
$$ = rb_assoc_new(get_value($$), get_value($2));
|
||||||
%*/
|
%*/
|
||||||
}
|
}
|
||||||
| f_label
|
| f_label
|
||||||
|
|
|
@ -96,6 +96,20 @@ eot
|
||||||
assert_equal("t", fname)
|
assert_equal("t", fname)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_named_with_default
|
||||||
|
sexp = Ripper.sexp("def hello(bln: true, int: 1, str: 'str', sym: :sym) end")
|
||||||
|
named = String.new
|
||||||
|
search_sexp(:params, sexp)[5].each { |i| named << "#{i}\n" } # join flattens
|
||||||
|
exp = "#{<<-"{#"}#{<<~'};'}"
|
||||||
|
{#
|
||||||
|
[[:@label, "bln:", [1, 10]], [:var_ref, [:@kw, "true", [1, 15]]]]
|
||||||
|
[[:@label, "int:", [1, 21]], [:@int, "1", [1, 26]]]
|
||||||
|
[[:@label, "str:", [1, 29]], [:string_literal, [:string_content, [:@tstring_content, "str", [1, 35]]]]]
|
||||||
|
[[:@label, "sym:", [1, 41]], [:symbol_literal, [:symbol, [:@ident, "sym", [1, 47]]]]]
|
||||||
|
};
|
||||||
|
assert_equal(exp, named)
|
||||||
|
end
|
||||||
|
|
||||||
def search_sexp(sym, sexp)
|
def search_sexp(sym, sexp)
|
||||||
return sexp if !sexp or sexp[0] == sym
|
return sexp if !sexp or sexp[0] == sym
|
||||||
sexp.find do |e|
|
sexp.find do |e|
|
||||||
|
|
Loading…
Reference in a new issue