
Nana::Parser - parser for Tora language

use Nana::Parser;
my $parser = Nana::Parser->new();
my $ast = $parser->parse();

This is a parser class for Tora language.

Create a new instance of Nana::Parser.
Parse a $src and return abstract syntax tree. AST is pure perl arrayref. It's not object.
You can pass $fname for debuggability and __FILE__.

This version of Nana::Parser is very slow. I want to rewrite this class by C.

Tokuhiro Matsuno

http://tora-lang.org for more details.