You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
522 B
JavaScript
23 lines
522 B
JavaScript
/*
|
|
* Classic example grammar, which recognizes simple arithmetic expressions like
|
|
* "2*(3+4)". The parser generated from this grammar then computes their value.
|
|
*/
|
|
|
|
start
|
|
= additive
|
|
|
|
additive
|
|
= left:multiplicative "+" right:additive { return left + right; }
|
|
/ multiplicative
|
|
|
|
multiplicative
|
|
= left:primary "*" right:multiplicative { return left * right; }
|
|
/ primary
|
|
|
|
primary
|
|
= integer
|
|
/ "(" additive:additive ")" { return additive; }
|
|
|
|
integer "integer"
|
|
= digits:$[0-9]+ { return parseInt(digits, 10); }
|