Fix DebugInfoRange for ApplyExpression in config parser

fixes #8173
This commit is contained in:
Michael Friedrich 2015-01-08 17:00:13 +01:00
parent d78f7be909
commit ff3ee32d92
1 changed files with 1 additions and 1 deletions

View File

@ -1006,7 +1006,7 @@ apply:
Expression *fterm = context->m_FTerm.top(); Expression *fterm = context->m_FTerm.top();
context->m_FTerm.pop(); context->m_FTerm.pop();
$$ = new ApplyExpression(type, target, $4, filter, fkvar, fvvar, fterm, $7, exprl, @$); $$ = new ApplyExpression(type, target, $4, filter, fkvar, fvvar, fterm, $7, exprl, DebugInfoRange(@2, @7));
} }
; ;