NAME
MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::StringNumericLiteral - ECMAScript-262, Edition 5, string numeric literal grammar written in Marpa BNF
VERSION
version 0.020
SYNOPSIS
use strict;
use warnings FATAL => 'all';
use MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::StringNumericLiteral;
my $grammar = MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::StringNumericLiteral->new();
my $grammar_content = $grammar->content();
my $grammar_option = $grammar->grammar_option();
my $recce_option = $grammar->recce_option();
DESCRIPTION
This modules returns describes the ECMAScript 262, Edition 5 string numeric literal grammar written in Marpa BNF, as of http://www.ecma-international.org/publications/standards/Ecma-262.htm, section 9.3.1. This module inherits the methods from MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::Base package.
SUBROUTINES/METHODS
new($optionsp)
$optionsp is a reference to hash that may contain the following key/value pair:
- semantics_package
-
As per Marpa::R2, The semantics package is used when resolving action names to fully qualified Perl names. This package must support and behave as documented in the NativeNumberSemantics (c.f. SEE ALSO).
make_grammar_content($class)
Returns the grammar. This will be injected in the Program's grammar.
recce_option($self)
Returns option for Marpa::R2::Scanless::R->new(), returned as a reference to a hash.
SEE ALSO
MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::Base
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.