Skip to content

Commit

Permalink
Fixes IR printing DV option set (#2116)
Browse files Browse the repository at this point in the history
  • Loading branch information
jas-valgotar committed Dec 19, 2023
1 parent 39456d6 commit 17da65c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using System.Linq;
using System.Text;
using Microsoft.PowerFx.Core.Entities;
using Microsoft.PowerFx.Core.IR;
using Microsoft.PowerFx.Core.IR.Nodes;
using Microsoft.PowerFx.Core.IR.Symbols;
Expand Down Expand Up @@ -181,6 +182,10 @@ public override RetVal Visit(ResolvedObjectNode node, Context context)
{
_sb.Append(n.Name);
}
else if (node.Value is IExternalEntity ee)
{
_sb.Append(ee.EntityName);
}
else
{
throw new NotImplementedException();
Expand Down

0 comments on commit 17da65c

Please sign in to comment.