cvs: ZendEngine2 / zend_language_parser.y

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

  Modified files:              
    /ZendEngine2	zend_language_parser.y 
  Log:
  - Add missing ';'s
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_language_parser.y?r1=1.209&r2=1.210&diff_format=u
Index: ZendEngine2/zend_language_parser.y
diff -u ZendEngine2/zend_language_parser.y:1.209 ZendEngine2/zend_language_parser.y:1.210
--- ZendEngine2/zend_language_parser.y:1.209	Sat Jul 26 15:31:38 2008
+++ ZendEngine2/zend_language_parser.y	Tue Aug 12 10:22:57 2008
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_language_parser.y,v 1.209 2008/07/26 15:31:38 dmitry Exp $ */
+/* $Id: zend_language_parser.y,v 1.210 2008/08/12 10:22:57 helly Exp $ */
 
 /*
  * LALR shift/reduce conflicts and how they are resolved:
@@ -179,13 +179,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.