Giter Site home page Giter Site logo

Use Data.Loc rather than Int about earley HOT 3 CLOSED

ollef avatar ollef commented on July 16, 2024
Use Data.Loc rather than Int

from earley.

Comments (3)

ollef avatar ollef commented on July 16, 2024

Thanks for your input. That would indeed be useful. It would be much easier to create nice (e.g. clang-style) error messages if that information was available.

The Earley library doesn't know enough about the input token type to tell where new lines start and end, so it's not able to construct a Loc on its own as it is. For that to work it would have to always work on Char or L tokentype (which is what you're doing). Though both seem useful, it is needlessly restrictive to commit to using only one of those.

Can we can find a way of doing it that does not sacrifice generality?

For what it's worth, your current approach seems good. It allows you to put location information in subexpressions, which you couldn't do with the proposed change to the library. You may also be able to get the information that you want by looking at the location of the first token in the unconsumed field of the Report (though the report is about how far it was able to parse before failing and not where individual parses were obtained).

from earley.

mitchellwrosen avatar mitchellwrosen commented on July 16, 2024

I realized this morning that my original proposal makes no sense, as you point out (the parser has no source information). I think all I need are some simple combinators, which might not even belong in Earley itself:

locSymbol :: Eq t => t -> Prod r e (L t) (L t)
locSymbol = symbol . L NoLoc

locSatisfy :: (t -> Bool) -> Prod r e (L t) (L t)
locSatisfy p = satisfy (p . unLoc)

This works because the Eq instance of L ignores its Loc

from earley.

ollef avatar ollef commented on July 16, 2024

That looks like a nice approach. I'll close this issue now, but if you do come up with a better way to do it, we can revisit it.

from earley.

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.