From: nobu@... Date: 2015-01-04T12:33:14+00:00 Subject: [ruby-core:67325] [ruby-trunk - Bug #10693] [Closed] Regression in Ripper for keyword arg default params Issue #10693 has been updated by Nobuyoshi Nakada. Status changed from Open to Closed % Done changed from 0 to 100 Applied in changeset r49140. ---------- parse.y: fix f_label result * parse.y (f_label): return tLABEL value as it is. [ruby-core:67315] [Bug #10693] ---------------------------------------- Bug #10693: Regression in Ripper for keyword arg default params https://bugs.ruby-lang.org/issues/10693#change-50783 * Author: Loren Segal * Status: Closed * Priority: High * Assignee: * Category: * Target version: * ruby -v: 2.2.0p0 * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- Easy to reproduce, seems to only be present in 2.2: ```ruby $ ruby -v ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-darwin14] $ ruby -rripper -e 'p Ripper.sexp "def x(a:1) end"' [:program, [[:def, [:@ident, "x", [1, 4]], [:paren, [:params, nil, nil, nil, nil, [[17568, [:@int, "1", [1, 8]]]], nil, nil]], [:bodystmt, [[:void_stmt]], nil, nil, nil]]]] ``` Note the `17568` instead of the expected identifier name. I assume 17568 is the interned symbol index value instead of the value itself. Expecting to see `"a"` instead of this Fixnum. -- https://bugs.ruby-lang.org/