doliveirakn (Kyle d'Oliveira)
- Login: doliveirakn
- Registered on: 05/04/2020
- Last sign in: 05/04/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
05/04/2020
-
09:15 PM Ruby Bug #16829 (Open): Exceptions raised from within an enumerated method lose part of their stacktrace
- Consider the following code:
``` ruby
class Test
include Enumerable
def each(&block)
raise "Boom"
end
end
def execution_method_a
Test.new.to_enum(:each).next
end
def execution_method_b
Test.new.each do
...