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:
parent
db3181aff1
commit
fa5f9e0740
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user