Ruby: Add change note

This commit is contained in:
Tom Hvitved
2025-04-07 09:24:26 +02:00
parent 65a11984bd
commit f992c714fd

View File

@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* Calls to `super` without explict arguments now have their implicit arguments generated. For example, in `def foo(x, y) { super } end` the call to `super` becomes `super(x, y)`.