1
0
mirror of https://github.com/php/php-src.git synced 2026-04-09 00:53:30 +02:00

- Add missing semi-colon.

This commit is contained in:
Andi Gutmans
2002-06-29 15:38:40 +00:00
parent ede84fa384
commit 5f2fcdd689

View File

@@ -439,6 +439,7 @@ class_statement:
is_reference:
/* empty */ { $$.op_type = ZEND_RETURN_VAL; }
| '&' { $$.op_type = ZEND_RETURN_REF; }
;
class_variable_decleration:
class_variable_decleration ',' T_VARIABLE { zend_do_declare_property(&$3, NULL, $1.op_type TSRMLS_CC); }