tony-gk / parser-generator

Generator of parsers for LL1 grammars.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parser generator

Generates recursive descent parser code in Kotlin. The parser is generated by input LL1 grammar. Inherited and synthesized attributes are supported. The attributes can be described as Kotlin properties.
Inherited attributes can be assigned in parentheses after the corresponding rule.
Synthesized attributes can be assigned in curly braces at the end of the rule production.
Token regex patterns are specified in single quotes, and literals in double quotes.

Example grammar of calculator:

@header {package examples.calculator}

@attributes {
    var value = 0
    var acc = 0
}

expr
    : bitwiseExpr { value = $0.value }
    ;

bitwiseExpr
    : additiveExpr bitwiseExprs(value = $0.value) { value = $1.value }
    ;

bitwiseExprs
    : SHL bitwiseExpr { value = res.value shl $1.value }
    | SHR bitwiseExpr { value = res.value shr $1.value }
    |
    ;

additiveExpr
    : mulExpr additiveExprs(acc = $0.value) { value = $1.value }
    ;

additiveExprs
    : PLUS mulExpr additiveExprs(acc = res.acc + $1.value) { value = $2.value }
    | MINUS mulExpr additiveExprs(acc = res.acc - $1.value) { value = $2.value }
    | { value = res.acc }
    ;

mulExpr
    : unaryExpr mulExprs(acc = $0.value) { value = $1.value}
    ;

mulExprs
    : MUL unaryExpr mulExprs(acc = res.acc * $1.value) { value = $2.value }
    | DIV unaryExpr mulExprs(acc = if ($1.value == 0) Int.MAX_VALUE else (res.acc / $1.value))
            { value = $2.value }
    | { value = res.acc }
    ;

unaryExpr
    : MINUS primaryExpr { value = -$1.value }
    | primaryExpr { value = $0.value }
    ;

primaryExpr
    : NUMBER { value = $0.text.toInt() }
    | LPAREN expr RPAREN  { value = $1.value }
    ;

PLUS  : "+" ;
MINUS : "-" ;
MUL   : "*" ;
DIV   : "/" ;
SHL   : "<<" ;
SHR   : ">>" ;

LPAREN : "(" ;
RPAREN : ")" ;

NUMBER : '[0-9]+' ;

WS : '[ \t\r\n]+';
skip WS;

About

Generator of parsers for LL1 grammars.


Languages

Language:Java 55.8%Language:Kotlin 40.9%Language:GAP 2.1%Language:ANTLR 1.3%