Fix operator precedence grouping for */ and +/- (#6993)

* Fix operator precedence grouping for */ and +/-

* Add release note for #6993

* Fix exponent associativity and add regression test

---------

Co-authored-by: Hadi Ayache <hadiayache@Hadis-Mac-mini.local>
This commit is contained in:
HadiAyache
2026-02-17 01:23:15 -08:00
committed by GitHub
parent 253530e239
commit f7227f4e62
3 changed files with 42 additions and 12 deletions

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [HadiAyache]
---
Fix arithmetic expression parsing so operators with the same precedence (`*`/`/`, `+`/`-`) are evaluated left-to-right.