From: "byroot (Jean Boussier)" Date: 2021-11-22T11:16:35+00:00 Subject: [ruby-core:106205] [Ruby master Bug#18250] Anonymous variables seem to break `Ractor.make_shareable` Issue #18250 has been updated by byroot (Jean Boussier). I reduced it to a small script: ```ruby iseq = RubyVM::InstructionSequence.compile(<<~RUBY) def transport_request(req, *) foo do super end end RUBY RubyVM::InstructionSequence.load_from_binary(iseq.to_binary) ``` Seems very similar to the original error. ---------------------------------------- Bug #18250: Anonymous variables seem to break `Ractor.make_shareable` https://bugs.ruby-lang.org/issues/18250#change-94812 * Author: tenderlovemaking (Aaron Patterson) * Status: Open * Priority: Normal * ruby -v: ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-darwin20] * Backport: 2.6: UNKNOWN, 2.7: UNKNOWN, 3.0: UNKNOWN ---------------------------------------- The following code breaks with a strange error: ```ruby def foo(*); ->{ super };end Ractor.make_shareable(foo) # expected Symbol ``` Output: ``` [aaron@tc ~/g/ruby (master)]$ cat test.rb def foo(*); ->{ super };end Ractor.make_shareable(foo) # expected Symbol [aaron@tc ~/g/ruby (master)]$ ruby test.rb :816:in `make_shareable': wrong argument type false (expected Symbol) (TypeError) from test.rb:2:in `
' [aaron@tc ~/g/ruby (master)]$ ``` The reason is because the `*` parameter has no name, but Ractor tries to find the name so it can make an exception. I *expect* the above program to raise an `Ractor::IsolationError`, but instead it raises a `TypeError`. I've attached a patch that fixes this bug. ---Files-------------------------------- 0001-Give-params-a-name.patch (3.33 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: