Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement "Destructuring Coalesce" RFC #147

Closed
wants to merge 9 commits into from

Conversation

thekid
Copy link
Member

@thekid thekid commented Nov 12, 2022

Adds support for destructuring coalesce to all PHP versions supported by XP Compiler (7.0 - 8.2). Quoting the RFC:

Allowing for [$a ?? $b] = $array;, where $a is assigned $b if the key in the array is null or missing.

Example

Taken from the RFC:

[$key, $value ?? null]= explode('=', 'key=value', 2);
$key;   // "key"
$value; // "value"

[$key, $value ?? null]= explode('=', 'key', 2);
$key;   // "key"
$value; // null

Implementation

The functionality is implemented by rewriting destructuring assignments inside lang.ast.emit.RewriteDestructuring:

// Input - also works using list(...) syntax
[$key, $value ?? 'default']= $expr;

// Emitted as
$__t= $expr;
is_array($__t)
  ? [$key= $__t[0], $value= $__t[1] ?? 'default']
  : ([$key= null, $value= null] ? $__t : null)
;

Note: The "otherwise" branch of the ternary statement above is needed to be compatible with how list() works. It sets all variables to NULL and returns the given right-hand-side expression if this expression is not an array. For example, $r= list($a, $b)= "Test"; return [$a, $b, $r] returns [null, null, "Test"]!

Shortcomings

This doesn't work when used inside foreach, see also #31 (comment)

See also

@thekid
Copy link
Member Author

thekid commented Nov 12, 2022

This doesn't work when used inside foreach

This can be accomplished by rewriting the destructuring statement as the first statement in the foreach loop as seen in 12cbf1b

// Input code
foreach ($this->list as [$key, $value ?? 'default']) {
  echo $key, ' = ', $value, "\n";
}

// Emitted as follows
foreach ($this->list as &$__t) {
  is_array($__t)
    ? [$key= $__t[0], $value= $__t[1] ?? 'default']
    : ([$key= null, $value= null] ? $__t : null)
  ;
  echo $key, ' = ', $value, "\n";
}

@thekid
Copy link
Member Author

thekid commented Nov 12, 2022

From https://wiki.php.net/start#vote

A 2/3 majority is required. The vote started 2022-11-07 and will end 2022-11-21.

🕙 Waiting for this to be either accepted or rejected before continuing here. If accepted, this would be the first PHP 8.3 feature to be supported by XP Compiler!

@thekid
Copy link
Member Author

thekid commented Nov 28, 2022

RFC was rejected, closing without implementation.

@thekid thekid closed this Nov 28, 2022
@thekid thekid deleted the feature/destructuring_coalesce branch November 28, 2022 18:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant