1 2 3 4 5 6 7 8 9 10 11 12 13
|
## 1.38.0 (2025-01-27)
### New features
* [#346](https://github.com/rubocop/rubocop-ast/pull/346): Add `Node#loc?` to determine if a node has a given location. ([@dvandersluis][])
* [#356](https://github.com/rubocop/rubocop-ast/pull/356): Added `:any_block` as an alias for `:block` and `:numblock`, use it with `Node#any_block_type?`. Also available in node patterns: `{block numblock}` can become `any_block`. ([@earlopain][])
### Bug fixes
* [#323](https://github.com/rubocop/rubocop-ast/issues/323): Fix node captures inside of `?`, `+`, and `*` repetition. ([@earlopain][])
[@dvandersluis]: https://github.com/dvandersluis
[@earlopain]: https://github.com/earlopain
|