From: Perl 5 Porters Date: Fri, 5 Jul 1996 20:03:14 +0000 (+0000) Subject: Add version check option to "use" X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=62ac1c994e20a7298bfc84e40958ae6c95247bab;p=p5sagit%2Fp5-mst-13.2.git Add version check option to "use" --- diff --git a/perly.y b/perly.y index 96a35e1..57c9630 100644 --- a/perly.y +++ b/perly.y @@ -267,8 +267,8 @@ package : PACKAGE WORD ';' { package(Nullop); } ; -use : USE startsub WORD listexpr ';' - { utilize($1, $2, $3, $4); } +use : USE startsub WORD WORD listexpr ';' + { utilize($1, $2, $3, $4, $5); } ; expr : expr ANDOP expr