Code Monkey home page Code Monkey logo

Comments (2)

yhirose avatar yhirose commented on September 17, 2024 1

@maychan111, sorry for the late reply. I just found this message...

enable_ast() method in peglib.h may do the similar that you want to do.

    template <typename T = Ast>
    parser& enable_ast() {
        for (auto& x: *grammar_) {
            const auto& name = x.first;
            auto& rule = x.second;

            if (!rule.action) {
                auto is_token = rule.is_token;
                rule.action = [=](const SemanticValues& sv) {
                    auto line = line_info(sv.ss, sv.c_str()); // <- Translate the current text position into line and columns numbers.

SemanticValue structure has ss member which is the start pointer of the input source. sv.c_str() gives us the start pointer to the matched string for the rule. line_info call with those pointers will find line and column numbers for the position. (As you see in the code, line_info uses a naive linear algorithm. So I recommend to call this function only when it's necessary. )

Is this information enough for you to solve your problem? (If so, I'll update the README regarding this issue.)

Thanks for the report!

from cpp-peglib.

maychan111 avatar maychan111 commented on September 17, 2024

Great suggestion. It totally works! Thank you very much. Great library.

from cpp-peglib.

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.