Bare dynamic attrs: Match interpolation semantics

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2014-01-06 13:53:57 -05:00 committed by Eelco Dolstra
parent f9913f4422
commit f5e5793cd2
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ attr
string_attr
: '"' string_parts '"' { $$ = $2; }
| DOLLAR_CURLY expr '}' { $$ = $2; }
| DOLLAR_CURLY expr '}' { $$ = new ExprConcatStrings(true, new vector<Expr*>(1, $2)); }
;
expr_list