Files
codeql/ruby/ql/lib/change-notes/2025-04-07-implicit-super-args.md
2025-04-07 09:24:26 +02:00

211 B

category
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).