GabrielMalakias (Gabriel Malaquias)
- Login: GabrielMalakias
- Registered on: 02/03/2022
- Last sign in: 02/03/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/03/2022
-
10:46 AM Ruby Bug #18569 (Rejected): RubyVM::InstructionSequence#disasm returns nil for composed functions
- I was testing function composition Proc#>> (https://ruby-doc.org/core-2.6/Proc.html#method-i-3E-3E) and noticed that when disassembling composed functions it always returns nil.
``` ruby
first_proc = proc { |x| x + 2 }
puts RubyVM::...