GithubHelp home page GithubHelp logo

Comments (3)

mrkkrp avatar mrkkrp commented on May 31, 2024

Well, it can be implemented on lower level if we place it in Text.Megaparsec.Prim module. When you run parser, it constructs initial state, which includes position, we could write a bit more general version of runParserT that takes the position as argument instead.

Since you open this sort of issue, you probably can explain how this feature would be widely useful in practice?

from megaparsec.

chamini2 avatar chamini2 commented on May 31, 2024

Well, I'm currently writing an interpreter for a functional programming language that supports mixfix operators, these are operators where the arguments can be in any part of them, I'll illustrate with an example:

_+_ : Nat -> Nat -> Nat
Z + n     = n
(S m) + n = S (m + n)

So we define the operator, indicating where the arguments go with the underscore character _, a more complex example is if_then_else_

if_then_else_ : forall x : Type . Bool -> x -> x -> x
if True  then y else _ = y
if False then _ else n = n

And we have a statement for indicating the fixity and precedence

operator if_then_else_ prefix 1
operator _+_           infixL 4

So I first parse the source of a program with Alex and Happy, and run over the Abstract Syntax Tree to get such operator statements, creating rules for a dynamic parser, in Megaparsec.

So in every expression found in the AST, I must run a parser, but just on that part, or at least that's how I'm doing it.

For example,

x : Bool -> Nat
x b = S Z + (if b then Z else S Z)

I want the function definition to become

x b = _+_ (S Z) (if_then_else_ b Z (S Z))

I don't know if this classifies as widely used, but I thought more people may want to parse specific parts of some already parsed information, not starting at the position (1, 1) of the information.

from megaparsec.

mrkkrp avatar mrkkrp commented on May 31, 2024

I think this (as well as ability to get rest of input on success and failure) will be added in version 4.2.0, perhaps.

from megaparsec.

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.