File Coverage

blib/lib/Math/Calc/Units/Grammar.pm
Criterion Covered Total %
statement 86 166 51.8
branch 30 72 41.6
condition 1 12 8.3
subroutine 11 24 45.8
pod n/a
total 128 274 46.7


line stmt bran cond sub pod time code
1             ####################################################################
2             #
3             # This file was generated using Parse::Yapp version 1.04.
4             #
5             # Don't edit this file, use source file instead.
6             #
7             # ANY CHANGE MADE HERE WILL BE LOST !
8             #
9             ####################################################################
10             package Math::Calc::Units::Grammar;
11 1     1   6 use vars qw ( @ISA );
  1         2  
  1         47  
12 1     1   5 use strict;
  1         1  
  1         68  
13              
14             @ISA= qw ( Parse::Yapp::Driver );
15             #Included Parse/Yapp/Driver.pm file----------------------------------------
16             {
17             #
18             # Module Parse::Yapp::Driver
19             #
20             # This module is part of the Parse::Yapp package available on your
21             # nearest CPAN
22             #
23             # Any use of this module in a standalone parser make the included
24             # text under the same copyright as the Parse::Yapp module itself.
25             #
26             # This notice should remain unchanged.
27             #
28             # (c) Copyright 1998-2001 Francois Desarmenien, all rights reserved.
29             # (see the pod text in Parse::Yapp module for use and distribution rights)
30             #
31              
32             package Parse::Yapp::Driver;
33              
34             require 5.004;
35              
36 1     1   5 use strict;
  1         2  
  1         30  
37              
38 1     1   5 use vars qw ( $VERSION $COMPATIBLE $FILENAME );
  1         1  
  1         63  
39              
40             $VERSION = '1.04';
41             $COMPATIBLE = '0.07';
42             $FILENAME=__FILE__;
43              
44 1     1   5 use Carp;
  1         2  
  1         1145  
45              
46             #Known parameters, all starting with YY (leading YY will be discarded)
47             my(%params)=(YYLEX => 'CODE', 'YYERROR' => 'CODE', YYVERSION => '',
48             YYRULES => 'ARRAY', YYSTATES => 'ARRAY', YYDEBUG => '');
49             #Mandatory parameters
50             my(@params)=('LEX','RULES','STATES');
51              
52             sub new {
53 109     109   10187 my($class)=shift;
54 109         179 my($errst,$nberr,$token,$value,$check,$dotpos);
55 109         952 my($self)={ ERROR => \&_Error,
56             ERRST => \$errst,
57             NBERR => \$nberr,
58             TOKEN => \$token,
59             VALUE => \$value,
60             DOTPOS => \$dotpos,
61             STACK => [],
62             DEBUG => 0,
63             CHECK => \$check };
64              
65 109         392 _CheckParams( [], \%params, \@_, $self );
66              
67 109 50 33     761 exists($$self{VERSION})
68             and $$self{VERSION} < $COMPATIBLE
69             and croak "Yapp driver version $VERSION ".
70             "incompatible with version $$self{VERSION}:\n".
71             "Please recompile parser module.";
72              
73 109 50       208 ref($class)
74             and $class=ref($class);
75              
76 109         561 bless($self,$class);
77             }
78              
79             sub YYParse {
80 109     109   159 my($self)=shift;
81 109         120 my($retval);
82              
83 109         277 _CheckParams( \@params, \%params, \@_, $self );
84              
85 109 50       294 if($$self{DEBUG}) {
86 0         0 _DBLoad();
87 0         0 $retval = eval '$self->_DBParse()';#Do not create stab entry on compile
88 0 0       0 $@ and die $@;
89             }
90             else {
91 109         240 $retval = $self->_Parse();
92             }
93 105         506 $retval
94             }
95              
96             sub YYData {
97 0     0   0 my($self)=shift;
98              
99 0 0       0 exists($$self{USER})
100             or $$self{USER}={};
101              
102 0         0 $$self{USER};
103            
104             }
105              
106             sub YYErrok {
107 0     0   0 my($self)=shift;
108              
109 0         0 ${$$self{ERRST}}=0;
  0         0  
110 0         0 undef;
111             }
112              
113             sub YYNberr {
114 0     0   0 my($self)=shift;
115              
116 0         0 ${$$self{NBERR}};
  0         0  
117             }
118              
119             sub YYRecovering {
120 0     0   0 my($self)=shift;
121              
122 0         0 ${$$self{ERRST}} != 0;
  0         0  
123             }
124              
125             sub YYAbort {
126 0     0   0 my($self)=shift;
127              
128 0         0 ${$$self{CHECK}}='ABORT';
  0         0  
129 0         0 undef;
130             }
131              
132             sub YYAccept {
133 105     105   134 my($self)=shift;
134              
135 105         120 ${$$self{CHECK}}='ACCEPT';
  105         201  
136 105         143 undef;
137             }
138              
139             sub YYError {
140 0     0   0 my($self)=shift;
141              
142 0         0 ${$$self{CHECK}}='ERROR';
  0         0  
143 0         0 undef;
144             }
145              
146             sub YYSemval {
147 0     0   0 my($self)=shift;
148 0         0 my($index)= $_[0] - ${$$self{DOTPOS}} - 1;
  0         0  
149              
150 0         0 $index < 0
151 0 0 0     0 and -$index <= @{$$self{STACK}}
152             and return $$self{STACK}[$index][1];
153              
154 0         0 undef; #Invalid index
155             }
156              
157             sub YYCurtok {
158 0     0   0 my($self)=shift;
159              
160             @_
161 0 0       0 and ${$$self{TOKEN}}=$_[0];
  0         0  
162 0         0 ${$$self{TOKEN}};
  0         0  
163             }
164              
165             sub YYCurval {
166 0     0   0 my($self)=shift;
167              
168             @_
169 0 0       0 and ${$$self{VALUE}}=$_[0];
  0         0  
170 0         0 ${$$self{VALUE}};
  0         0  
171             }
172              
173             sub YYExpect {
174 0     0   0 my($self)=shift;
175              
176 0         0 keys %{$self->{STATES}[$self->{STACK}[-1][0]]{ACTIONS}}
  0         0  
177             }
178              
179             sub YYLexer {
180 0     0   0 my($self)=shift;
181              
182 0         0 $$self{LEX};
183             }
184              
185              
186             #################
187             # Private stuff #
188             #################
189              
190              
191             sub _CheckParams {
192 218     218   331 my($mandatory,$checklist,$inarray,$outhash)=@_;
193 218         223 my($prm,$value);
194 218         297 my($prmlst)={};
195              
196 218         791 while(($prm,$value)=splice(@$inarray,0,2)) {
197 654         1052 $prm=uc($prm);
198 654 50       1371 exists($$checklist{$prm})
199             or croak("Unknow parameter '$prm'");
200 654 50       1429 ref($value) eq $$checklist{$prm}
201             or croak("Invalid value for parameter '$prm'");
202 654         1440 $prm=unpack('@2A*',$prm);
203 654         2463 $$outhash{$prm}=$value;
204             }
205 218         532 for (@$mandatory) {
206 327 50       959 exists($$outhash{$_})
207             or croak("Missing mandatory parameter '".lc($_)."'");
208             }
209             }
210              
211             sub _Error {
212 0     0   0 print "Parse error.\n";
213             }
214              
215             sub _DBLoad {
216             {
217 1     1   8 no strict 'refs';
  1     0   1  
  1         1302  
  0         0  
218              
219 0 0       0 exists(${__PACKAGE__.'::'}{_DBParse})#Already loaded ?
  0         0  
220             and return;
221             }
222 0         0 my($fname)=__FILE__;
223 0         0 my(@drv);
224 0 0       0 open(DRV,"<$fname") or die "Report this as a BUG: Cannot open $fname";
225 0         0 while() {
226             /^\s*sub\s+_Parse\s*{\s*$/ .. /^\s*}\s*#\s*_Parse\s*$/
227 0 0       0 and do {
228 0         0 s/^#DBG>//;
229 0         0 push(@drv,$_);
230             }
231             }
232 0         0 close(DRV);
233              
234 0         0 $drv[0]=~s/_P/_DBP/;
235 0         0 eval join('',@drv);
236             }
237              
238             #Note that for loading debugging version of the driver,
239             #this file will be parsed from 'sub _Parse' up to '}#_Parse' inclusive.
240             #So, DO NOT remove comment at end of sub !!!
241             sub _Parse {
242 109     109   188 my($self)=shift;
243              
244 109         267 my($rules,$states,$lex,$error)
245             = @$self{ 'RULES', 'STATES', 'LEX', 'ERROR' };
246 109         271 my($errstatus,$nberror,$token,$value,$stack,$check,$dotpos)
247             = @$self{ 'ERRST', 'NBERR', 'TOKEN', 'VALUE', 'STACK', 'CHECK', 'DOTPOS' };
248              
249             #DBG> my($debug)=$$self{DEBUG};
250             #DBG> my($dbgerror)=0;
251              
252             #DBG> my($ShowCurToken) = sub {
253             #DBG> my($tok)='>';
254             #DBG> for (split('',$$token)) {
255             #DBG> $tok.= (ord($_) < 32 or ord($_) > 126)
256             #DBG> ? sprintf('<%02X>',ord($_))
257             #DBG> : $_;
258             #DBG> }
259             #DBG> $tok.='<';
260             #DBG> };
261              
262 109         147 $$errstatus=0;
263 109         127 $$nberror=0;
264 109         161 ($$token,$$value)=(undef,undef);
265 109         280 @$stack=( [ 0, undef ] );
266 109         161 $$check='';
267              
268 109         121 while(1) {
269 1150         1144 my($actions,$act,$stateno);
270              
271 1150         1618 $stateno=$$stack[-1][0];
272 1150         1314 $actions=$$states[$stateno];
273              
274             #DBG> print STDERR ('-' x 40),"\n";
275             #DBG> $debug & 0x2
276             #DBG> and print STDERR "In state $stateno:\n";
277             #DBG> $debug & 0x08
278             #DBG> and print STDERR "Stack:[".
279             #DBG> join(',',map { $$_[0] } @$stack).
280             #DBG> "]\n";
281              
282              
283 1150 100       2105 if (exists($$actions{ACTIONS})) {
284              
285             defined($$token)
286 596 100       1158 or do {
287 442         1127 ($$token,$$value)=&$lex($self);
288             #DBG> $debug & 0x01
289             #DBG> and print STDERR "Need token. Got ".&$ShowCurToken."\n";
290             };
291              
292 596 50       1949 $act= exists($$actions{ACTIONS}{$$token})
    100          
293             ? $$actions{ACTIONS}{$$token}
294             : exists($$actions{DEFAULT})
295             ? $$actions{DEFAULT}
296             : undef;
297             }
298             else {
299 554         924 $act=$$actions{DEFAULT};
300             #DBG> $debug & 0x01
301             #DBG> and print STDERR "Don't need token.\n";
302             }
303              
304             defined($act)
305 1150 50       2071 and do {
306              
307             $act > 0
308 1150 100       1916 and do { #shift
309              
310             #DBG> $debug & 0x04
311             #DBG> and print STDERR "Shift and go to state $act.\n";
312              
313             $$errstatus
314 439 50       1853 and do {
315 0         0 --$$errstatus;
316              
317             #DBG> $debug & 0x10
318             #DBG> and $dbgerror
319             #DBG> and $$errstatus == 0
320             #DBG> and do {
321             #DBG> print STDERR "**End of Error recovery.\n";
322             #DBG> $dbgerror=0;
323             #DBG> };
324             };
325              
326              
327 439         933 push(@$stack,[ $act, $$value ]);
328              
329 439 100       1004 $$token ne '' #Don't eat the eof
330             and $$token=$$value=undef;
331 439         706 next;
332             };
333              
334             #reduce
335 711         652 my($lhs,$len,$code,@sempar,$semval);
336 711         717 ($lhs,$len,$code)=@{$$rules[-$act]};
  711         1541  
337              
338             #DBG> $debug & 0x04
339             #DBG> and $act
340             #DBG> and print STDERR "Reduce using rule ".-$act." ($lhs,$len): ";
341              
342 711 100       1791 $act
343             or $self->YYAccept();
344              
345 711         846 $$dotpos=$len;
346              
347             unpack('A1',$lhs) eq '@' #In line rule
348 711 50       1888 and do {
349 0 0       0 $lhs =~ /^\@[0-9]+\-([0-9]+)$/
350             or die "In line rule name '$lhs' ill formed: ".
351             "report it as a BUG.\n";
352 0         0 $$dotpos = $1;
353             };
354              
355 1041         2506 @sempar = $$dotpos
356 711 50       1885 ? map { $$_[1] } @$stack[ -$$dotpos .. -1 ]
357             : ();
358              
359 711 50       2141 $semval = $code ? &$code( $self, @sempar )
    100          
360             : @sempar ? $sempar[0] : undef;
361              
362 707         2251 splice(@$stack,-$len,$len);
363              
364             $$check eq 'ACCEPT'
365 707 100       1721 and do {
366              
367             #DBG> $debug & 0x04
368             #DBG> and print STDERR "Accept.\n";
369              
370 105         423 return($semval);
371             };
372              
373             $$check eq 'ABORT'
374 602 50       1042 and do {
375              
376             #DBG> $debug & 0x04
377             #DBG> and print STDERR "Abort.\n";
378              
379 0         0 return(undef);
380              
381             };
382              
383             #DBG> $debug & 0x04
384             #DBG> and print STDERR "Back to state $$stack[-1][0], then ";
385              
386             $$check eq 'ERROR'
387 602 50       1027 or do {
388             #DBG> $debug & 0x04
389             #DBG> and print STDERR
390             #DBG> "go to state $$states[$$stack[-1][0]]{GOTOS}{$lhs}.\n";
391              
392             #DBG> $debug & 0x10
393             #DBG> and $dbgerror
394             #DBG> and $$errstatus == 0
395             #DBG> and do {
396             #DBG> print STDERR "**End of Error recovery.\n";
397             #DBG> $dbgerror=0;
398             #DBG> };
399              
400 602         2032 push(@$stack,
401             [ $$states[$$stack[-1][0]]{GOTOS}{$lhs}, $semval ]);
402 602         820 $$check='';
403 602         1312 next;
404             };
405              
406             #DBG> $debug & 0x04
407             #DBG> and print STDERR "Forced Error recovery.\n";
408              
409 0           $$check='';
410              
411             };
412              
413             #Error
414             $$errstatus
415 0 0         or do {
416              
417 0           $$errstatus = 1;
418 0           &$error($self);
419 0 0         $$errstatus # if 0, then YYErrok has been called
420             or next; # so continue parsing
421              
422             #DBG> $debug & 0x10
423             #DBG> and do {
424             #DBG> print STDERR "**Entering Error recovery.\n";
425             #DBG> ++$dbgerror;
426             #DBG> };
427              
428 0           ++$$nberror;
429              
430             };
431              
432             $$errstatus == 3 #The next token is not valid: discard it
433 0 0         and do {
434             $$token eq '' # End of input: no hope
435 0 0         and do {
436             #DBG> $debug & 0x10
437             #DBG> and print STDERR "**At eof: aborting.\n";
438 0           return(undef);
439             };
440              
441             #DBG> $debug & 0x10
442             #DBG> and print STDERR "**Dicard invalid token ".&$ShowCurToken.".\n";
443              
444 0           $$token=$$value=undef;
445             };
446              
447 0           $$errstatus=3;
448              
449 0   0       while( @$stack
      0        
450             and ( not exists($$states[$$stack[-1][0]]{ACTIONS})
451             or not exists($$states[$$stack[-1][0]]{ACTIONS}{error})
452             or $$states[$$stack[-1][0]]{ACTIONS}{error} <= 0)) {
453              
454             #DBG> $debug & 0x10
455             #DBG> and print STDERR "**Pop state $$stack[-1][0].\n";
456              
457 0           pop(@$stack);
458             }
459              
460             @$stack
461 0 0         or do {
462              
463             #DBG> $debug & 0x10
464             #DBG> and print STDERR "**No state left on stack: aborting.\n";
465              
466 0           return(undef);
467             };
468              
469             #shift the error token
470              
471             #DBG> $debug & 0x10
472             #DBG> and print STDERR "**Shift \$error token and go to state ".
473             #DBG> $$states[$$stack[-1][0]]{ACTIONS}{error}.
474             #DBG> ".\n";
475              
476 0           push(@$stack, [ $$states[$$stack[-1][0]]{ACTIONS}{error}, undef ]);
477              
478             }
479              
480             #never reached
481 0           croak("Error in driver logic. Please, report it as a BUG");
482              
483             }#_Parse
484             #DO NOT remove comment
485              
486             1;
487              
488             }
489             #End of include--------------------------------------------------
490              
491              
492             #line 3 "Grammar.y"
493              
494             use Math::Calc::Units::Compute qw(plus minus mult divide power construct);
495              
496              
497             sub new {
498             my($class)=shift;
499             ref($class)
500             and $class=ref($class);
501              
502             my($self)=$class->SUPER::new( yyversion => '1.04',
503             yystates =>
504             [
505             {#State 0
506             ACTIONS => {
507             'NUMBER' => 5,
508             "#" => 2,
509             "-" => 6,
510             'WORD' => 7,
511             'CONSTRUCT' => 3,
512             "\@" => 9,
513             "(" => 4
514             },
515             GOTOS => {
516             'unit' => 1,
517             'value' => 8,
518             'START' => 10,
519             'expr' => 11
520             }
521             },
522             {#State 1
523             DEFAULT => -12
524             },
525             {#State 2
526             ACTIONS => {
527             'WORD' => 7
528             },
529             GOTOS => {
530             'unit' => 12
531             }
532             },
533             {#State 3
534             DEFAULT => -16
535             },
536             {#State 4
537             ACTIONS => {
538             'NUMBER' => 5,
539             "-" => 6,
540             'WORD' => 7,
541             'CONSTRUCT' => 3,
542             "\@" => 9,
543             "(" => 4
544             },
545             GOTOS => {
546             'unit' => 1,
547             'value' => 8,
548             'expr' => 13
549             }
550             },
551             {#State 5
552             ACTIONS => {
553             'WORD' => 7
554             },
555             DEFAULT => -13,
556             GOTOS => {
557             'unit' => 14
558             }
559             },
560             {#State 6
561             ACTIONS => {
562             'NUMBER' => 15
563             }
564             },
565             {#State 7
566             DEFAULT => -17
567             },
568             {#State 8
569             DEFAULT => -9
570             },
571             {#State 9
572             ACTIONS => {
573             'NUMBER' => 17
574             }
575             },
576             {#State 10
577             ACTIONS => {
578             '' => 18
579             }
580             },
581             {#State 11
582             ACTIONS => {
583             "*" => 21,
584             "+" => 22,
585             "**" => 20,
586             "-" => 23,
587             'WORD' => 7,
588             "/" => 24
589             },
590             DEFAULT => -1,
591             GOTOS => {
592             'unit' => 19
593             }
594             },
595             {#State 12
596             DEFAULT => -2
597             },
598             {#State 13
599             ACTIONS => {
600             "*" => 21,
601             "+" => 22,
602             "**" => 20,
603             "-" => 23,
604             'WORD' => 7,
605             "/" => 24,
606             ")" => 25
607             },
608             GOTOS => {
609             'unit' => 19
610             }
611             },
612             {#State 14
613             DEFAULT => -11
614             },
615             {#State 15
616             DEFAULT => -14
617             },
618             {#State 16
619             DEFAULT => -18
620             },
621             {#State 17
622             DEFAULT => -15
623             },
624             {#State 18
625             DEFAULT => -0
626             },
627             {#State 19
628             DEFAULT => -10
629             },
630             {#State 20
631             ACTIONS => {
632             'NUMBER' => 5,
633             "-" => 6,
634             'WORD' => 7,
635             'CONSTRUCT' => 3,
636             "\@" => 9,
637             "(" => 4
638             },
639             GOTOS => {
640             'unit' => 1,
641             'value' => 8,
642             'expr' => 26
643             }
644             },
645             {#State 21
646             ACTIONS => {
647             'NUMBER' => 5,
648             "-" => 6,
649             'WORD' => 7,
650             'CONSTRUCT' => 3,
651             "\@" => 9,
652             "(" => 4
653             },
654             GOTOS => {
655             'unit' => 1,
656             'value' => 8,
657             'expr' => 27
658             }
659             },
660             {#State 22
661             ACTIONS => {
662             'NUMBER' => 5,
663             "-" => 6,
664             'WORD' => 7,
665             'CONSTRUCT' => 3,
666             "\@" => 9,
667             "(" => 4
668             },
669             GOTOS => {
670             'unit' => 1,
671             'value' => 8,
672             'expr' => 28
673             }
674             },
675             {#State 23
676             ACTIONS => {
677             'NUMBER' => 5,
678             "-" => 6,
679             'WORD' => 7,
680             'CONSTRUCT' => 3,
681             "\@" => 9,
682             "(" => 4
683             },
684             GOTOS => {
685             'unit' => 1,
686             'value' => 8,
687             'expr' => 29
688             }
689             },
690             {#State 24
691             ACTIONS => {
692             'NUMBER' => 5,
693             "-" => 6,
694             'WORD' => 7,
695             'CONSTRUCT' => 3,
696             "\@" => 9,
697             "(" => 4
698             },
699             GOTOS => {
700             'unit' => 1,
701             'value' => 8,
702             'expr' => 30
703             }
704             },
705             {#State 25
706             DEFAULT => -8
707             },
708             {#State 26
709             DEFAULT => -7,
710             GOTOS => {
711             'unit' => 19
712             }
713             },
714             {#State 27
715             ACTIONS => {
716             "**" => 20,
717             'WORD' => 7
718             },
719             DEFAULT => -5,
720             GOTOS => {
721             'unit' => 19
722             }
723             },
724             {#State 28
725             ACTIONS => {
726             "**" => 20,
727             "*" => 21,
728             'WORD' => 7,
729             "/" => 24
730             },
731             DEFAULT => -3,
732             GOTOS => {
733             'unit' => 19
734             }
735             },
736             {#State 29
737             ACTIONS => {
738             "**" => 20,
739             "*" => 21,
740             'WORD' => 7,
741             "/" => 24
742             },
743             DEFAULT => -4,
744             GOTOS => {
745             'unit' => 19
746             }
747             },
748             {#State 30
749             ACTIONS => {
750             "**" => 20,
751             'WORD' => 7
752             },
753             DEFAULT => -6,
754             GOTOS => {
755             'unit' => 19
756             }
757             }
758             ],
759             yyrules =>
760             [
761             [#Rule 0
762             '$start', 2, undef
763             ],
764             [#Rule 1
765             'START', 1, undef
766             ],
767             [#Rule 2
768             'START', 2, undef
769             ],
770             [#Rule 3
771             'expr', 3,
772             sub
773             #line 22 "Grammar.y"
774             { return plus($_[1], $_[3]); }
775             ],
776             [#Rule 4
777             'expr', 3,
778             sub
779             #line 23 "Grammar.y"
780             { return minus($_[1], $_[3]); }
781             ],
782             [#Rule 5
783             'expr', 3,
784             sub
785             #line 24 "Grammar.y"
786             { return mult($_[1], $_[3]); }
787             ],
788             [#Rule 6
789             'expr', 3,
790             sub
791             #line 25 "Grammar.y"
792             { return divide($_[1], $_[3]); }
793             ],
794             [#Rule 7
795             'expr', 3,
796             sub
797             #line 26 "Grammar.y"
798             { return power($_[1], $_[3]); }
799             ],
800             [#Rule 8
801             'expr', 3,
802             sub
803             #line 27 "Grammar.y"
804             { return $_[2]; }
805             ],
806             [#Rule 9
807             'expr', 1,
808             sub
809             #line 28 "Grammar.y"
810             { return $_[1]; }
811             ],
812             [#Rule 10
813             'expr', 2,
814             sub
815             #line 29 "Grammar.y"
816             { return mult($_[1], [ 1, $_[2] ]); }
817             ],
818             [#Rule 11
819             'value', 2,
820             sub
821             #line 33 "Grammar.y"
822             { return [ $_[1] => $_[2] ] }
823             ],
824             [#Rule 12
825             'value', 1,
826             sub
827             #line 35 "Grammar.y"
828             { return [ 1 => $_[1] ] }
829             ],
830             [#Rule 13
831             'value', 1,
832             sub
833             #line 36 "Grammar.y"
834             { return [ $_[1] => {} ] }
835             ],
836             [#Rule 14
837             'value', 2,
838             sub
839             #line 37 "Grammar.y"
840             { return [ -$_[2] => {} ] }
841             ],
842             [#Rule 15
843             'value', 2,
844             sub
845             #line 38 "Grammar.y"
846             { return [ $_[2] => { 'timestamp' => 1 } ] }
847             ],
848             [#Rule 16
849             'value', 1,
850             sub
851             #line 39 "Grammar.y"
852             { return construct($_[1]) }
853             ],
854             [#Rule 17
855             'unit', 1,
856             sub
857             #line 42 "Grammar.y"
858             { return { $_[1] => 1 } }
859             ],
860             [#Rule 18
861             'unit', 2,
862             sub
863             #line 43 "Grammar.y"
864             { my $u = {}; $u->{$_[1]}++; $u->{$_[2]}++; return $u; }
865             ]
866             ],
867             @_);
868             bless($self,$class);
869             }
870              
871             #line 46 "Grammar.y"
872              
873              
874             1;