This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Description
Via @KevOrr:
Also in that file, on line 258, $i !== $j will (approximately) parse as (Not (Equal (Identifier i) (Identifier j))). According to https://www.php.net/manual/en/language.operators.comparison.php, !== means "not identical". It seems that semantic denotes "identical" by StrictEqual, given line 257. Should it instead parse as (Not (StrictEqual (Identifier i) (Identifier j)))?