Giter Site home page Giter Site logo

Comments (3)

renatahodovan avatar renatahodovan commented on May 13, 2024 2

Hi @mrigger !

While Grammarinator and ANTLR share many design patterns, like the possibility of inlined code and the definition of superclasses, they cannot share the same inlined code or the same superclass. It's true simply because their purposes are different: recognition vs. generation. Furthermore, while ANTLR supports inlined code in multiple languages, Grammarinator only supports Python right now.

Regarding the failures in this report, the first two errors are caused by inlined Java parser code in the grammars. On one hand, their purpose is to improve parsing, hence they are useless in our generation scenario. On the other hand, they are written in Java which is not supported by Grammarinator. To avoid these kind of issues, please use the --no-actions CLI option with grammarinator-process. (If you need, you can use inline code ofc, but only in Python.)

The third error is due to the "missing" PostgreSQLParserBase superclass, which is required by the generated ANTLR parser, but not needed by the generated fuzzer (recognition vs. generation again). To overcome this issue, you should comment out the superClass = ... options from the raw grammars. (If you need your own superclass, then you can use this syntax to define it ofc, but you must ensure to place the superclass file on PYTHONPATH.)

I hope it helps! Please let me know if you have any further questions.

Cheers,
Reni

from grammarinator.

renatahodovan avatar renatahodovan commented on May 13, 2024

@mrigger I think we can consider this issue as "fixed". Please feel free to reopen if it still stands.

from grammarinator.

mrigger avatar mrigger commented on May 13, 2024

Thanks a lot for the detailed explanation!

from grammarinator.

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.