-
So many interesting extensions and applications of Power Fx (e.g. the Interpreter, Dataverse, OpenAPI/OData Connectors) seem to depend on IRResult, IRNodeVisitor, and the IntermediateNode classes. Why aren't these types public, and are there plans to make them public? Until then, are we expected to work directly with CheckResult, TexlVisitor, and the TexlNode classes instead? This will require us to re-implement binding, type inference, etc. ourselves. Note, I'm primarily interested in translating expressions, not evaluating them. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For example, DType is the internal type class. But not a good, stable, public surface. So we wrapped that in FormulaType - and make that public. Can you tell me more about what kind of translation you want? |
Beta Was this translation helpful? Give feedback.
For example, DType is the internal type class. But not a good, stable, public surface. So we wrapped that in FormulaType - and make that public.
Can you tell me more about what kind of translation you want?