Code Monkey home page Code Monkey logo

Comments (6)

badicsalex avatar badicsalex commented on June 12, 2024

There is no explicit support for indentation parsing in the generator, so the best thing you could do is preparse your text, and replace the indentation with special {INDENT} and {DEDENT} strings, and then do the parsing with peginator. The algorithm itself should look something like this: https://stackoverflow.com/a/40960461

I guess newlines will be important in your grammar, so you should probably replace those with a special {NEWLINE} string too, or use custom whitespace handling (by default newlines will be dropped between tokens).

Maybe some day peginator will have out-of-box support for these, but not currently.

from peginator.

hamza1312 avatar hamza1312 commented on June 12, 2024

Can you show how ii can "pre-parse" Not the entire code, just how to handle the pre parsing in peginator.

from peginator.

hamza1312 avatar hamza1312 commented on June 12, 2024

Will "@extern" do the job ig?

from peginator.

badicsalex avatar badicsalex commented on June 12, 2024

To pre-parse, before giving your String to peginator, you first transform it with your own code:

let content = load_file("in.txt");
let transformed_content = detect_indent_dedent(&content); // <= You have to write this function, it's not part of peginator
let ast = GeneratedParser::parse(&transformed_content);

@extern is for calling a specific parser while parsing. It's mostly for handling special-form literals or tokens that would be hard to describe in EBNF.

from peginator.

hamza1312 avatar hamza1312 commented on June 12, 2024

Alright i get it now thank you.

from peginator.

hamza1312 avatar hamza1312 commented on June 12, 2024

Closed.

from peginator.

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.