The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MarpaX::Languages::ECMA::AST::Grammar::ECMA_262_5::Uri - ECMA-262, Edition 5, grammar written in Marpa BNF

VERSION

version 0.001

SYNOPSIS

    use strict;
    use warnings FATAL => 'all';
    use MarpaX::Languages::ECMA::AST::Grammar::ECMA_262_5::Pattern;

    my $grammar = MarpaX::Languages::ECMA::AST::Grammar::ECMA_262_5::Pattern->new();

    my $grammar_content = $grammar->content();
    my $grammar_option = $grammar->grammar_option();
    my $recce_option = $grammar->recce_option();

DESCRIPTION

This modules returns describes the ECMA 262, Edition 5, pattern grammar written in Marpa BNF, as of http://www.ecma-international.org/publications/standards/Ecma-262.htm.

SUBROUTINES/METHODS

new()

Instance a new object. Takes no parameter.

content()

Returns the content of the grammar. Takes no argument.

grammar_option()

Returns recommended option for Marpa::R2::Scanless::G->new(), returned as a reference to a hash.

recce_option()

Returns recommended option for Marpa::R2::Scanless::R->new(), returned as a reference to a hash.

AUTHOR

Jean-Damien Durand <jeandamiendurand@free.fr>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Jean-Damien Durand.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.