function isLogicalAssignmentOperator(operator: string): boolean { return ["&&=", "||=", "??="].includes(operator); }