cvs: ZendEngine2(PHP_5_3) / zend_language_parser.y

"Marcus Boerger" <[email protected]>
Newsgroups gmane.comp.php.cvs.zend
Message-ID <cvshelly1218536583@cvsserver>
helly		Tue Aug 12 10:23:03 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /ZendEngine2	zend_language_parser.y 
  Log:
  - MFH Add missing ';'s
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_language_parser.y?r1=1.160.2.4.2.8.2.24&r2=1.160.2.4.2.8.2.25&diff_format=u
Index: ZendEngine2/zend_language_parser.y
diff -u ZendEngine2/zend_language_parser.y:1.160.2.4.2.8.2.24 ZendEngine2/zend_language_parser.y:1.160.2.4.2.8.2.25
--- ZendEngine2/zend_language_parser.y:1.160.2.4.2.8.2.24	Sat Jul 26 15:30:24 2008
+++ ZendEngine2/zend_language_parser.y	Tue Aug 12 10:23:02 2008
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_language_parser.y,v 1.160.2.4.2.8.2.24 2008/07/26 15:30:24 dmitry Exp $ */
+/* $Id: zend_language_parser.y,v 1.160.2.4.2.8.2.25 2008/08/12 10:23:02 helly Exp $ */
 
 /*
  * LALR shift/reduce conflicts and how they are resolved:
@@ -177,13 +177,14 @@
 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); }



-- 
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.