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
1 changed files with 3 additions and 3 deletions

View File

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