nicholasdower (Nick Dower)
- Login: nicholasdower
- Registered on: 05/16/2025
- Last sign in: 05/16/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
09/16/2025
-
08:36 PM Ruby Revision 1f6d8450 (git): [Bug #21313] Handle `it` in rescue and ensure blocks.
- The following is crashing for me:
```shell
ruby --yjit --yjit-call-threshold=1 -e '1.tap { raise rescue p it }'
ruby: YJIT has panicked. More info to follow...
thread '<unnamed>' panicked at ./yjit/src/codegen.rs:2402:14:
...
```
It s... -
08:36 PM Ruby Revision b5346f2c (git): Add a test case for `it` in a regex.
- Co-authored-by: Alan Wu <XrXr@users.noreply.github.com>
05/16/2025
-
03:17 PM Ruby Revision 4921845b (git): [Bug #21313] Handle `it` in rescue and ensure blocks.
- The following is crashing for me:
```shell
ruby --yjit --yjit-call-threshold=1 -e '1.tap { raise rescue p it }'
ruby: YJIT has panicked. More info to follow...
thread '<unnamed>' panicked at ./yjit/src/codegen.rs:2402:14:
...
```
It s... -
03:17 PM Ruby Revision c5c252c0 (git): Add a test case for `it` in a regex.
- Co-authored-by: Alan Wu <XrXr@users.noreply.github.com>
-
05:03 AM Ruby Bug #21313: `it` in rescue/ensure on prism
- I encountered this issue today and attempted a fix: https://github.com/ruby/ruby/pull/13360
I hope that was appropriate.
02/14/2025
-
01:37 AM Ruby Revision cefa630b (git): YJIT: Add crashing test for yielding keyword args
- Code like the following is crashing for us on 3.4.1:
```ruby
def a(&) = yield(x: 0)
1000.times { a { |x:| x } }
```
Crash:
```
ruby: YJIT has panicked. More info to follow...
thread '<unnamed>' panicked at ./yjit/src/codegen.rs:8018:...
01/04/2025
-
05:53 PM Ruby Revision 37356b71 (git): YJIT: Add crashing test for yielding keyword args
- Code like the following is crashing for us on 3.4.1:
```ruby
def a(&) = yield(x: 0)
1000.times { a { |x:| x } }
```
Crash:
```
ruby: YJIT has panicked. More info to follow...
thread '<unnamed>' panicked at ./yjit/src/codegen.rs:8018:...