gollahon (Daniel Gollahon)
- Login: gollahon
- Registered on: 11/12/2018
- Last sign in: 11/29/2021
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
04/23/2024
-
03:18 PM Ruby Revision b62ab952 (git): [ruby/prism] Document `IfNode` fields
- - Adds documentation for the fields of the `IfNode`. Also updates the overall description to mention ternary expressions.
- Part of #2123
https://github.com/ruby/prism/commit/fd17c0733d
11/12/2018
-
06:08 PM Ruby Misc #15298 (Closed): Inconsistent date errors
- When using Date, if you initialize an invalid date you'll get an `ArgumentError`:
```ruby
Date.new(1999, 1, 32) # => ArgumentError: invalid date
```
This is as expected.
If you provide `nil` as any of the three arguments, yo...