Change return type for 'set' expressions to Empty

fixes #8172
This commit is contained in:
Gunnar Beutner 2015-01-12 08:55:16 +01:00
parent 9a6a84d9d9
commit 5e9d9aea74
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ Value SetExpression::DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const
delete psdhint;
}
return right;
return Empty;
}
Value ConditionalExpression::DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const