]> granicus.if.org Git - php/commitdiff
- Add missing ';'s
authorMarcus Boerger <helly@php.net>
Tue, 12 Aug 2008 10:22:57 +0000 (10:22 +0000)
committerMarcus Boerger <helly@php.net>
Tue, 12 Aug 2008 10:22:57 +0000 (10:22 +0000)
Zend/zend_language_parser.y

index edbbf9497160977a19fa1f4abe2f013d6ee27301..2b976694cd955725770041252612644d40281b20 100644 (file)
@@ -179,13 +179,14 @@ top_statement:
 use_declarations:
                use_declarations ',' use_declaration
        |       use_declaration
+;
 
 use_declaration:
                namespace_name                  { zend_do_use(&$1, NULL, 0 TSRMLS_CC); }
        |       namespace_name T_AS T_STRING    { zend_do_use(&$1, &$3, 0 TSRMLS_CC); }
        |       T_PAAMAYIM_NEKUDOTAYIM T_STRING { zend_do_use(&$2, NULL, 1 TSRMLS_CC); }
        |       T_PAAMAYIM_NEKUDOTAYIM T_STRING T_AS T_STRING { zend_do_use(&$2, &$4, 1 TSRMLS_CC); }
-
+;
 
 constant_declaration:
                constant_declaration ',' T_STRING '=' static_scalar     { zend_do_declare_constant(&$3, &$5 TSRMLS_CC); }