Hi Larry, thank you for the updated RFC! I love it, and having played with the implementation, I can say I love it so far as well.
I have one suggestion regarding reflection: Shouldn't ReflectionCase expose an additional getInstance() method, that would return the case instance, such as Suit::HEARTS? Also, I noticed 2 typos in the code samples: - in "Enumerated Methods", 1st code block: missing "implements Colorful" after "enum Suit" - in "Enumerated Methods", 2nd code block: missing "public function color()" after "private function __construct() {}" Finally, I got a segmentation fault while trying to use what I think is an unsupported syntax (removing the ":string" from a scalar enum), where is the correct place to report this? The GitHub PR? Good luck with the RFC! - Benjamin On Mon, 28 Dec 2020 at 21:22, Larry Garfield <la...@garfieldtech.com> wrote: > Hello, Internalians! > > After considerable discussion and effort, Ilija and I are ready to offer > you round 2 on enumerations. This is in the spirit of the previous > discussion, but based on that discussion a great deal has been reworked. > The main change is that Enumeration Cases are now object instances of the > Enumeration class rather than their own class. Most of the other changes > are knock-on effects of that. > > Of particular note: > > * Cases may not have methods or constants on them. They're just dumb > values. > * Enums themselves may have methods, static methods, or constants. > * Traits are supported, as long as they don't have properties. > * The value() method on scalar enums is now a property. > > The full RFC is here, and I recommend reading it again in full given how > much was updated. > > https://wiki.php.net/rfc/enumerations > > The implementation is 98% complete; there's still a few lagging bits in > reflection, and some opcache bugs that Ilija is still stomping on. > > There are a few outstanding questions listed that we would like feedback > on. We're not entirely certain which direction to go with them, for > reasons explained in the RFC. Input on those is especially welcome. > > Happy New Year. May it be enumerable. > > -- > Larry Garfield > la...@garfieldtech.com > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: https://www.php.net/unsub.php > >