microsoft / Power-Fx

Power Fx low-code programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PrettyPrintIRVisitor throws NotImplementedException with `ForAll([10], ThisRecord)`

LucGenetier opened this issue · comments

public override RetVal Visit(ScopeAccessNode node, Context context)
{
if (node.Value is ScopeAccessSymbol s)
{
_sb.Append(s.Name);
}
else
{
throw new NotImplementedException();
}

        return null;
    }