Skip to content
pf_miles edited this page Dec 7, 2020 · 12 revisions

Definition.

  • A dynamic parser generator.
  • Suitable for DSL creation in pure java.
  • Though parsing complex general purposed programming languages are feasible.
  • Recognizes LL(*) grammar.
  • Requires JDK 1.6 or above.
  • No any other dependencies except for the built-in java library.

Installation.

  • The latest v0.2.x packages are already in maven central repo. Just specify the dependency to include it:
<dependency>
    <groupId>com.github.pfmiles</groupId>
    <artifactId>dropincc.java</artifactId>
    <version>0.2.3</version>
</dependency>

Useful links.