Skip to content

Commit

Permalink
Fixed issues
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Jan 9, 2020
1 parent e9cc648 commit f5c317a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Core/Core/Execution/Utilities/VariableToValueRewriter.cs
Expand Up @@ -55,6 +55,13 @@ internal sealed class VariableToValueRewriter
return RewriteValue(value, null);
}

protected override ObjectValueNode RewriteObjectValue(
ObjectValueNode node,
object context)
{
return base.RewriteObjectValue(node, node);
}

protected override ObjectFieldNode RewriteObjectField(
ObjectFieldNode node,
object context)
Expand Down

0 comments on commit f5c317a

Please sign in to comment.