Skip to content

v0.18.1

Choose a tag to compare

@github-actions github-actions released this 21 Jun 12:16
· 26 commits to main since this release

Fixed

  • Member access and dereference (->, ?->, [], {}, method calls) now bind tighter than ** exponentiation, matching PHP. 10 ** $this->maxDigits now parses as 10 ** ($this->maxDigits) instead of (10 ** $this)->maxDigits; in PHP a dereference chain binds tighter than every binary operator. MEMBER_ACCESS_BP was raised above ** (and stays below ::) (php-rs-parser).