Hi,
Found one bug but only at the VSC startup:
<?php
namespace Devsense\Enum;
class MyClass {}
enum Definition: string
{
case TEST = MyClass::class;
public function factory(): object
{
return new ($this->value)();
}
}

When I edit this class, for example remove the ; at the end of line return new ($this->value)(); and insert ; the bug does not back.
Thank you.