Code Monkey home page Code Monkey logo

Comments (6)

maxbrunsfeld avatar maxbrunsfeld commented on June 1, 2024 1

Rather than "C++", do you mean CPP, the C Pre-processor?

from tree-sitter-haskell.

rewinfrey avatar rewinfrey commented on June 1, 2024

@maxbrunsfeld Thanks, I've updated the original post.

from tree-sitter-haskell.

tek avatar tek commented on June 1, 2024

while parsing doesn't fail on #ifdef et al anymore, it still cannot deal with #else other than creating a single node for the entire code block.
The reason for this is a general problem, tree-sitter's state would need to be reset to what it was at #if when encountering #else, and even then I'm not sure how the parse tree would look like.

Another problem with CPP is that macros can be used anywhere and contain anything, causing potentially impossible situations.
There's this case in polysemy:

#if __GLASGOW_HASKELL__ < 806   -- There is a bug in older versions of Haddock that don't allow documentation on GADT arguments.                                                                                                   
#define HADDOCK --                                                                                                      
#else                                                       
#define HADDOCK -- ^                                                                                                    
#endif  

so the comment marker is inserted by the macro.

I can't imagine how this would be handled, even if we would run the preprocessor over the file, the positions would be off.

from tree-sitter-haskell.

tek avatar tek commented on June 1, 2024

There would need to be an API function available to the scanner that allows to inject shadow code into the source that is parsed regularly and mapped back to the original positions.

from tree-sitter-haskell.

patrickt avatar patrickt commented on June 1, 2024

Preprocessor-based parsing will always be a good-enough effort (modulo products like CodeQL that attempt to recreate the build environment in toto). I think we should keep this open for informational purposes, but also not sweat it too much.

from tree-sitter-haskell.

tek avatar tek commented on June 1, 2024

sounds good.

from tree-sitter-haskell.

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.