File Coverage

inc/TestML/Compiler/Pegex.pm
Criterion Covered Total %
statement 34 34 100.0
branch 5 10 50.0
condition n/a
subroutine 7 7 100.0
pod 0 3 0.0
total 46 54 85.1


line stmt bran cond sub pod time code
1             package TestML::Compiler::Pegex;
2              
3 4     4   20 use TestML::Base;
  4         6  
  4         26  
4             extends 'TestML::Compiler';
5              
6 4     4   1593 use TestML::Compiler::Pegex::Grammar;
  4         12  
  4         36  
7 4     4   1826 use TestML::Compiler::Pegex::AST;
  4         13  
  4         193  
8 4     4   1459 use Pegex::Parser;
  4         11  
  4         1694  
9              
10             has parser => ();
11              
12             sub compile_code {
13 4     4 0 6 my ($self) = @_;
14              
15 4         35 $self->{parser} = Pegex::Parser->new(
16             grammar => TestML::Compiler::Pegex::Grammar->new,
17             receiver => TestML::Compiler::Pegex::AST->new,
18             );
19 4         19 $self->fixup_grammar;
20              
21 4 50       22 $self->parser->parse($self->code, 'code_section')
22             or die "Parse TestML code section failed";
23             }
24              
25             sub compile_data {
26 4     4 0 7 my ($self) = @_;
27              
28 4 50       40 if (length $self->data) {
29 4 50       24 $self->parser->parse($self->data, 'data_section')
30             or die "Parse TestML data section failed";
31             }
32              
33 4         41 $self->{function} = $self->parser->receiver->function;
34             }
35              
36             # TODO This can be moved to the AST some day.
37             sub fixup_grammar {
38 4     4 0 7 my ($self) = @_;
39              
40 4         28 my $tree = $self->{parser}->grammar->tree;
41              
42 4         39 my $point_lines = $tree->{point_lines}{'.rgx'};
43              
44 4         17 my $block_marker = $self->directives->{BlockMarker};
45 4 50       21 if ($block_marker) {
46 4         18 $block_marker =~ s/([\$\%\^\*\+\?\|])/\\$1/g;
47 4         102 $tree->{block_marker}{'.rgx'} = qr/\G$block_marker/;
48 4         37 $point_lines =~ s/===/$block_marker/;
49             }
50              
51 4         15 my $point_marker = $self->directives->{PointMarker};
52 4 50       18 if ($point_marker) {
53 4         10 $point_marker =~ s/([\$\%\^\*\+\?\|])/\\$1/g;
54 4         53 $tree->{point_marker}{'.rgx'} = qr/\G$point_marker/;
55 4         20 $point_lines =~ s/\\-\\-\\-/$point_marker/;
56             }
57              
58 4         152 $tree->{point_lines}{'.rgx'} = qr/$point_lines/;
59             }
60              
61             1;