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