1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-30 04:19:30 +01:00

Formatting fix

This commit is contained in:
nikic 2011-12-04 17:03:01 +01:00
parent db3181aff1
commit fa5f9e0740

View File

@ -466,10 +466,8 @@ property_declaration_list:
;
property_declaration:
T_VARIABLE
{ $$ = Stmt_PropertyProperty[parseVar($1), null]; }
| T_VARIABLE '=' static_scalar
{$$ = Stmt_PropertyProperty[parseVar($1), $3]; }
T_VARIABLE { $$ = Stmt_PropertyProperty[parseVar($1), null]; }
| T_VARIABLE '=' static_scalar { $$ = Stmt_PropertyProperty[parseVar($1), $3]; }
;
expr_list: