Skip to content

MartinNowak/ddparser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

ddparser

Dparser port of D language

Dparser is a GLR parser, with lots of features:

  • Runtime generation of parsing tables. Compile-time generation is also supported.
  • Handling of ambigous grammars. Calls back to user code, when ambiguity can not be resolved automatically.
  • Terminals are defined within the same grammar used for language syntax, by means of strings and regular expressions.
  • Many more. Please, read the official page.

Usage example:

Grammar g = new Grammar();
g
<< `EXPRESSION: EXPRESSION '+' EXPRESSION` << (c)
{
    writeln("EXPRESSION: ", c[0], " + ", c[2]);
}

<< ` | INT_LITERAL` << g.propagate
<< `INT_LITERAL: "[0-9]+"` << (c)
{
    writeln("Parsed literal: ", c[0].stringValue);
}
;

Parser p = new Parser();
if (p.setGrammar(g))
{
    writeln("PARSE RESULT: ", p.parse("123 + 456"));
}

About

Dparser bindings for D language

Resources

Stars

Watchers

Forks

Packages

No packages published