зеркало из https://github.com/microsoft/Power-Fx.git
Fixes IR printing DV option set (#2116)
This commit is contained in:
Родитель
39456d6a38
Коммит
17da65ca2c
|
@ -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;
|
||||
|
@ -181,6 +182,10 @@ namespace Microsoft.PowerFx.Tests
|
|||
{
|
||||
_sb.Append(n.Name);
|
||||
}
|
||||
else if (node.Value is IExternalEntity ee)
|
||||
{
|
||||
_sb.Append(ee.EntityName);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
|
Загрузка…
Ссылка в новой задаче