-
Notifications
You must be signed in to change notification settings - Fork 30
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
Segmentation fault #42
Comments
The problem is that padawan tries to recursively add links to parent classes. And when parent is the same class it goes to an infinite recursion. |
a good test case by @jludwig <?php
class C extends C {}
class E extends F {}
class F extends E {}
class G extends H {}
class H extends I {}
class I extends G {} |
maybe it was already obvious, but the workaround for symfony projects, is to simply open the file containing |
So, this is blocking re-integration into PHPCompanion. Any chance this can be fixed? Maybe the reflection code of Symfony itself (that introduced this testfile) helps? symfony/var-dumper@f133ef9 |
Personally, I'd love an |
Padawan could not generate index for
Symfony\Component\VarDumper\Tests\Fixtures\NotLoadableClass
The text was updated successfully, but these errors were encountered: