Fix incorrect debug hints for nested dictionary expressions

fixes #12571
This commit is contained in:
Gunnar Beutner 2016-08-29 08:46:29 +02:00
parent 32e6da1c60
commit 489269e2fa
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ ExpressionResult DictExpression::DoEvaluate(ScriptFrame& frame, DebugHint *dhint
try {
for (Expression *aexpr : m_Expressions) {
ExpressionResult element = aexpr->Evaluate(frame, dhint);
ExpressionResult element = aexpr->Evaluate(frame, m_Inline ? dhint : NULL);
CHECK_RESULT(element);
result = element.GetValue();
}