Giter Club home page Giter Club logo

Comments (7)

sebastianbergmann avatar sebastianbergmann commented on May 29, 2024

Alternatively, nikic/php-ast (or sgolemon/astkit) could be used as the backend instead of nikic/PHP-Parser. That would require PHP 7 to work but would be future-proof.

from php-scoper.

nikic avatar nikic commented on May 29, 2024

Accessing the file position is possible, see https://github.com/nikic/PHP-Parser/blob/master/doc/component/Lexer.markdown#lexer-options. Assuming version 2 of the library, you need to create the parser using

$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7, new Lexer([
    'usedAttributes' => [
         'docComment', 'startLine', 'endLine', 'startFilePos', 'endFilePos'
    ],
]));

and then access the position using $node->getAttribute('startFilePos') etc.

I combine this with a class that queues up modifications based on original offsets and then applies them all at once. (Doing it on the fly is a PITA because you need to track offset changes through the file).

from php-scoper.

webmozart avatar webmozart commented on May 29, 2024

@sebastianbergmann Can those tools be used for PHP 5 source code?

from php-scoper.

webmozart avatar webmozart commented on May 29, 2024

@nikic Perfect, thanks!

from php-scoper.

sebastianbergmann avatar sebastianbergmann commented on May 29, 2024

@webmozart Sure.

from php-scoper.

matthieuauger avatar matthieuauger commented on May 29, 2024

Hi,

@webmozart I'd love to give it a try, currently working on a first implementation. Can we agree to use the version 2 of nikic/PHP-Parser, even if it's still in alpha ?

Thanks

from php-scoper.

webmozart avatar webmozart commented on May 29, 2024

@matthieuauger sure, whatever you think is best :)

from php-scoper.

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.