Skip to content

Commit

Permalink
Fixed variable replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Jan 9, 2020
1 parent 9d38680 commit 3b94771
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Core/Core/Execution/Utilities/VariableToValueRewriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ protected override ListValueNode RewriteListValue(
}
else
{
copy[i] = value;
IValueNode rewritten = RewriteValue(value, context);
rewrite = rewritten == value;
copy[i] = rewritten;
}
}

Expand Down

0 comments on commit 3b94771

Please sign in to comment.