File Coverage

blib/lib/MarpaX/Languages/ECMAScript/AST/Grammar/ECMAScript_262_5/Lexical/NumericLiteral.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1 1     1   4 use strict;
  1         2  
  1         33  
2 1     1   4 use warnings FATAL => 'all';
  1         1  
  1         39  
3              
4             package MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::Lexical::NumericLiteral;
5 1     1   5 use parent qw/MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::Base/;
  1         1  
  1         5  
6              
7             # ABSTRACT: ECMAScript-262, Edition 5, lexical numeric grammar written in Marpa BNF
8              
9             our $VERSION = '0.019'; # VERSION
10              
11              
12             #
13             # Prevent injection of this grammar to collide with others:
14             # ___yy is changed to ___NumericLiteral___yy
15             #
16             our $grammar_content = do {local $/; };
17             $grammar_content =~ s/___/___NumericLiteral___/g;
18              
19              
20             sub make_grammar_content {
21 3     3 1 5 my ($class) = @_;
22 3         10 return $grammar_content;
23             }
24              
25              
26             1;
27              
28             =pod
29              
30             =encoding UTF-8
31              
32             =head1 NAME
33              
34             MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::Lexical::NumericLiteral - ECMAScript-262, Edition 5, lexical numeric grammar written in Marpa BNF
35              
36             =head1 VERSION
37              
38             version 0.019
39              
40             =head1 SYNOPSIS
41              
42             use strict;
43             use warnings FATAL => 'all';
44             use MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::Lexical::NumericLiteral;
45              
46             my $grammar = MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::Lexical::NumericLiteral->new();
47              
48             my $grammar_content = $grammar->content();
49             my $grammar_option = $grammar->grammar_option();
50             my $recce_option = $grammar->recce_option();
51              
52             =head1 DESCRIPTION
53              
54             This modules describes the ECMAScript 262, Edition 5 lexical numeric literal grammar written in Marpa BNF, as of L.
55              
56             This module inherits the methods from MarpaX::Languages::ECMAScript::AST::Grammar::ECMAScript_262_5::Base package.
57              
58             =head1 SUBROUTINES/METHODS
59              
60             =head2 make_grammar_content($class)
61              
62             Returns the grammar. This will be injected in the Program's grammar.
63              
64             =head1 SEE ALSO
65              
66             L
67              
68             =head1 AUTHOR
69              
70             Jean-Damien Durand
71              
72             =head1 COPYRIGHT AND LICENSE
73              
74             This software is copyright (c) 2013 by Jean-Damien Durand.
75              
76             This is free software; you can redistribute it and/or modify it under
77             the same terms as the Perl 5 programming language system itself.
78              
79             =cut
80              
81             __DATA__