Use MakeLiteral instead of 'new LiteralExpression'

refs #7822
This commit is contained in:
Gunnar Beutner 2014-11-25 08:44:47 +01:00
parent 03a4452343
commit c5839b91aa

View File

@ -565,15 +565,15 @@ combined_set_op: T_SET
lterm: type lterm: type
{ {
$$ = new LiteralExpression(); // ASTify this $$ = MakeLiteral(); // ASTify this
} }
| library | library
{ {
$$ = new LiteralExpression(); // ASTify this $$ = MakeLiteral(); // ASTify this
} }
| constant | constant
{ {
$$ = new LiteralExpression(); // ASTify this $$ = MakeLiteral(); // ASTify this
} }
| T_LOCAL indexer combined_set_op rterm | T_LOCAL indexer combined_set_op rterm
{ {