Giter VIP home page Giter VIP logo

Comments (4)

benjamin-hodgson avatar benjamin-hodgson commented on June 12, 2024

Do you have an example of what you would like to do with ParsingContext?

from pidgin.

RomanSoloweow avatar RomanSoloweow commented on June 12, 2024

I have a complex parser that forms the elements in the process. Several of these elements need a context in order to read the previous parsed result from it.

I could pass the context along with char, but it looks terrible and the construction is difficult read : Parser<(char, IParsingContext), string>

from pidgin.

RomanSoloweow avatar RomanSoloweow commented on June 12, 2024

@benjamin-hodgson what do you think about it?

from pidgin.

benjamin-hodgson avatar benjamin-hodgson commented on June 12, 2024
  1. Early on in the design of Pidgin I decided not to support a custom user state object, at least not via a third type parameter.
    • It's already tedious to repeat eg Parser<char, MyExpr> all over the place (doubly tedious since TToken typically doesn't change), so adding a third type parameter (Parser<char, MyState, MyExpr>) seemed excessively wordy.
    • It'd also mean threading an additional type parameter through all of the API functions (and through users' custom combinators)
    • There are legit design issues, such as what to do with user state upon backtracking.
    • So basically, while I certainly acknowledge that there are legit use cases for user state, I think it exceeds the complexity budget. Perhaps I made an early design mistake by prioritising custom input tokens over user state (for what it's worth, FParsec made the opposite decision) but it's much too late to reconsider that.
  2. I am open to providing an untyped slot on the ParseState<TToken> struct (ie public object UserState { get; set; }) possibly with an untyped high-level API, for those who definitely need it.
  3. However - being unfamiliar with your requirements and having not seen your code - I'm not altogether convinced that you are one of those people who need it. "Several of these elements need a context in order to read the previous parsed result" - there are a number of existing ways to get at a previous parsed result. Do Then/Map/from...select/parameterisation/etc not suit your needs?
    • User state is really for when the grammar depends, in a non-local way, on previous parse results. (An example of this would be indentation-based languages.) In your case it sounds like the result depends (locally) on previous results.
  4. I don't think plumbing it in through that first type parameter is likely to work in any case. That's the type of the tokens in the input stream, there isn't any way to write things into it from inside a parser.

from pidgin.

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.