nodebnf
nodebnf copied to clipboard
Native BNF parser, and compiler for nodejs
Results
2
nodebnf issues
Sort by
recently updated
recently updated
newest added
Hello. First of all, thanks for (as I believe) the only working BNF powered script parser for NodeJS. On the other hand it has some flaws obstructing the usage. In...
base on the example calculator. function doX(a,b) { return a * b } e.g. expression is 1 x 2 i want to calculate 1 x 2 by call function doX(1,2)...