option() = {module, atom()} | {output, file:filename()} | {transform_module, atom()} | {neotoma_priv_dir, file:filename()}
| bootstrap/0 | Bootstraps the neotoma metagrammar. |
| file/1 | Generates a parser from the specified file. |
| file/2 | Generates a parser from the specified file with the given options. |
| main/1 | Handler function for escript. |
bootstrap() -> ok
Equivalent to file("src/neotoma_parse.peg").
Bootstraps the neotoma metagrammar. Intended only for internal development!
file(InputGrammar::file:filename()) -> ok | {error, atom()}
Equivalent to file(Filename, []).
Generates a parser from the specified file.
file(InputGrammar::file:filename(), Options::[option()]) -> ok | {error, atom()}
Generates a parser from the specified file with the given options.
main(Args::list()) -> ok | no_return()
Handler function for escript.
Generated by EDoc