Giter Site home page Giter Site logo

Comments (5)

mvriel avatar mvriel commented on May 3, 2024

(Using PHP-Parser 0.9.3)

from php-parser.

nikic avatar nikic commented on May 3, 2024

I can't reproduce this:

<?php
$code = <<<'CODE'
<?php
namespace MySpace;

class A {
    use myTrait;
}
CODE;

$parser = new PHPParser_Parser(new PHPParser_Lexer);
$traverser = new PHPParser_NodeTraverser;
$traverser->addVisitor(new PHPParser_NodeVisitor_NameResolver);
$dumper = new PHPParser_NodeDumper;

echo $dumper->dump($traverser->traverse($parser->parse($code)));

outputs:

array(
    0: Stmt_Namespace(
        name: Name(
            parts: array(
                0: MySpace
            )
        )
        stmts: array(
            0: Stmt_Class(
                type: 0
                extends: null
                implements: array(
                )
                stmts: array(
                    0: Stmt_TraitUse(
                        traits: array(
                            0: Name_FullyQualified(
                                parts: array(
                                    0: MySpace
                                    1: myTrait
                                )
                            )
                        )
                        adaptations: array(
                        )
                    )
                )
                name: A
                namespacedName: Name(
                    parts: array(
                        0: MySpace
                        1: A
                    )
                )
            )
        )
    )
)

Are you sure you registered the NameResolver visitor?

from php-parser.

mvriel avatar mvriel commented on May 3, 2024

Yes, I have.. I will investigate some more and see if I can reproduce the issue in a more direct way

from php-parser.

mvriel avatar mvriel commented on May 3, 2024

To be sure I have tried to reproduce the issue with your example and was unable to reproduce it; while within phpDocumentor it seems to be reproducable. I am going to investigate more

from php-parser.

mvriel avatar mvriel commented on May 3, 2024

Alright, I found the issue and I don't think you can or have to do anything with it. I forgot that the FileReflector is also a registered visitor and I read the trait information during the EnterNode method for a class. But at that point the NameResolver visitor for the use statement has not triggered yet.

So I will have to find a workaround for that in phpDocumentor :) Sorry to bother you!

from php-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.